Kubernetes Deployment Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 4: Line 4:
* [[Kubernetes Deployments#Operations|Deployments]]
* [[Kubernetes Deployments#Operations|Deployments]]


=Creating Deployments=
=Updating Deployments=
=Updating Deployments=



Revision as of 23:16, 23 October 2019

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>