Skip to content

Restart pods via git-commit

Project Structure

.
├── helmwave.yml
└── values.yml

cat helmwave.yml

version: 0.25.0

repositories:
  - name: bitnami
    url: https://charts.bitnami.com/bitnami

releases:
  - name: my-app
    chart: bitnami/nginx
    values:
      - values.yml
    namespace: my-namespace
    create_namespace: true

nginx/template/deployment.yaml looks like that:

    ...
    metadata:  
      {{- with .Values.podAnnotations }}  
      annotations:  
        {{- toYaml . | nindent 8 }}  
      {{- end }}
    ...

We will pass pod annotations with values

Suppose that CI_COMMIT_SHORT_SHA contains commit short sha hash.

values.yml

podAnnotations:
  gitCommit: {{ requiredEnv "CI_COMMIT_SHORT_SHA" | quote }}

Run

helmwave build
helmwave up

or helmwave up --build