Skip to content

Commit

Permalink
[bitnami/vault] Fix missing existing PVC volume declaration (bitnami#…
Browse files Browse the repository at this point in the history
…31202)

Signed-off-by: Frederic Lebouc <[email protected]>
  • Loading branch information
fredleb committed Jan 3, 2025
1 parent 9e53dc4 commit 04a4455
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bitnami/vault/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ maintainers:
name: vault
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/vault
version: 1.6.1
version: 1.6.2
5 changes: 5 additions & 0 deletions bitnami/vault/templates/server/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,11 @@ spec:
name: {{ include "vault.server.configmapName" . }}
- name: home
emptyDir: {}
{{- if and .Values.server.persistence.enabled .Values.server.persistence.existingClaim }}
- name: data
persistentVolumeClaim:
claimName: {{ .Values.server.persistence.existingClaim }}
{{- end }}
{{- if .Values.server.extraVolumes }}
{{- include "common.tplvalues.render" (dict "value" .Values.server.extraVolumes "context" $) | nindent 8 }}
{{- end }}
Expand Down

0 comments on commit 04a4455

Please sign in to comment.