You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kubectl.command('get pod pod_name --output=json', function(err, data){})
kubectl.command('get pod pod_name --output=json').then()
const data = await kubectl.command('get pod pod_name --output=json')
//try this
kubectl.command('uncordon')
Can I use this to do 'kubectl drain' and 'kubectl uncordon' operations?
The text was updated successfully, but these errors were encountered: