Kubernetes Deployment Operations

From NovaOrdis Knowledge Base
Revision as of 23:16, 23 October 2019 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Creating Deployments

Updating Deployments

kubectl get deployment ... -o yaml → modify → kubectl apply -f

Scaling Up and Down

kubectl scale --replicas=0 deployment <my-deployment>
kubectl scale --replicas=2 deployment <my-deployment>