Abdullah Şamil Güser

Updates

Rolling Updates

Remember

Deployments


There are two values that you can set to help you with this process:

kubectl - Rolling Updates Cheat Sheet

# Update a deployment
kubectl apply -f [definition.yaml]

# Get the progress of the update
kubectl rollout status [deploymentname]

# Get the history of the deployment
kubectl rollout history deployment [deploymentname]

# Rollback a deployment
kubectl rollout undo [deploymentname]

# Rollback to a revision number
kubectl rollout undo [deploymentname] --to-revision=[revision#]

Blue/Green Deployments

Blue/Green Deployments Blue/Green Deployments