개념정리/Docker & Kubernetes

Kubernetes Commands(3)

backtwobasic 2025. 1. 31. 17:37

DaemonSet Commands

  • kubectl get daemonset : Get DaemonSet
  • kubectl get daemonset -o yaml : Get DaemonSet in YAML Format
  • kubectl edit daemonset : Edit DaemonSet
  • kubectl describe daemonset : Describe DaemonSet
  • kubectl delete daemonset : Delete DaemonSet

 

Job Commands

  • kubectl get job : Get Job
  • kubectl get job -o yaml : Get Job in YAML Format
  • kubectl edit job : Edit Job
  • kubectl describe job : Describe Job
  • kubectl delete job : Delete Job

 

Rollout Commands

  • kubectl rollout restart deployment : Restart Deployment
  • kubectl rollout undo deployment : Undo Deployment with the Latest Revision
  • kubectl rollout undo deployment --to-revision= : Undo Deployment with Specified Revision
  • kubectl rollout history deployment : Get All Revisions of Deployment
  • kubectl rollout history deployment --revision= : Get Specified Revision of Deployment

 

Secret Commands

  • kubectl get secret : Get Secret
  • kubectl describe secret : Describe Secret
  • kubectl delete secret : Delete Secret
  • kubectl edit secret : Edit Secret

'개념정리 > Docker & Kubernetes' 카테고리의 다른 글

Kubernetes Commands(2)  (0) 2025.01.31
Kubernetes Commands(1)  (0) 2025.01.31