Guest User

Untitled

a guest
Jun 25th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. * Get pods
  2. ```
  3. kubectl get pods
  4. ```
  5.  
  6. * Enter into pod
  7. ```
  8. kubectl exec -it [pod-name] /bin/bash
  9. ```
  10.  
  11. * Delete pod
  12. ```
  13. kubectl delete pod [pod-name]
  14. ```
  15.  
  16. * Get configmap values
  17. ```
  18. kubectl get configmap -o yaml [configmap-name]
  19. ```
Add Comment
Please, Sign In to add comment