Skip to content

Instantly share code, notes, and snippets.

@rbsilva
Last active March 22, 2018 16:06
Show Gist options
  • Save rbsilva/a888beef35ca8b83bc339c8f2859d25a to your computer and use it in GitHub Desktop.
Save rbsilva/a888beef35ca8b83bc339c8f2859d25a to your computer and use it in GitHub Desktop.
Kubernetes force rolling update of deployment
#!/bin/bash
export DEPLOYMENT=$1
kubectl get deployment $DEPLOYMENT -o json | kubectl patch -f - -p "{\"spec\":{\"template\":{\"metadata\":{\"annotations\":{\"date\":\"`date +'%s'`\"}}}}}"
kubectl rollout status deployment $DEPLOYMENT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment