diff --git a/charts/vault-raft-snapshot-agent/Chart.yaml b/charts/vault-raft-snapshot-agent/Chart.yaml index 32d0512..8f59f7d 100644 --- a/charts/vault-raft-snapshot-agent/Chart.yaml +++ b/charts/vault-raft-snapshot-agent/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: vault-raft-snapshot-agent type: application -version: 0.5.0 +version: 0.5.1 appVersion: "v0.11.0" description: Vault Raft Snapshot Agent takes periodic snapshots of Vault's Raft database and stores them on a local volume or an remote S3 bucket keywords: diff --git a/charts/vault-raft-snapshot-agent/templates/deployment.yaml b/charts/vault-raft-snapshot-agent/templates/deployment.yaml index 6ba4ae3..e3f4aa8 100644 --- a/charts/vault-raft-snapshot-agent/templates/deployment.yaml +++ b/charts/vault-raft-snapshot-agent/templates/deployment.yaml @@ -10,11 +10,11 @@ metadata: app.kubernetes.io/managed-by: {{ .Release.Service }} component: snapshot-agent {{- with .Values.deployment.extraLabels }} - {{ toYaml . | indent 4 }} + {{- toYaml . | nindent 4 }} {{- end }} {{- with .Values.deployment.extraAnnotations }} annotations: - {{ toYaml . | indent 4 }} + {{- toYaml . | nindent 4 }} {{- end }} spec: selector: @@ -37,12 +37,12 @@ spec: app.kubernetes.io/managed-by: {{ .Release.Service }} component: snapshot-agent {{- with .Values.deployment.spec.extraLabels }} - {{ toYaml . | indent 8 }} + {{- toYaml . | nindent 8 }} {{- end }} annotations: checksum/config: {{ include (print .Template.BasePath "/configmap.yaml") . | sha256sum }} {{- with .Values.deployment.spec.extraAnnotations }} - {{ toYaml . | indent 8 }} + {{- toYaml . | nindent 8 }} {{- end }} spec: restartPolicy: Always