Differences between revisions 5 and 7 (spanning 2 versions)
Revision 5 as of 2019-03-13 20:03:12
Size: 477
Editor: PieterSmit
Comment:
Revision 7 as of 2019-03-14 09:02:37
Size: 785
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:


=== Tricks ===
 * Use checksum of config map to change app annotation and force a new version to be deployed for apps that do not pick up new configs.
   * https://helm.sh/docs/developing_charts/#hooks
   * https://youtu.be/WugC_mbbiWU?t=1043
 * hooks {{{
annotation:
  "helm.sh/hook": " "

}}}

Kubernetes helm chart notes

  • Links: Azure/Kubernetes

  • helm install --name p1 git/helmchart/ --namespace piet --set "env=DEV" --timeout 600
  • Run: helm ls --all p1; to check the status of the release
  • run: helm del --purge p1; to delete it
  • helm status p1
  • helm history p1
  • helm rollback p1 3; roll back to version 3
  • helm rollback; to last successfully DEPLOYED revision
  • helm upgrade --debug --dry-run
  • helm upgrade --install

Tricks

k8s/helm (last edited 2022-08-02 02:27:36 by PieterSmit)