[bitnami/vault] Fix missing existing PVC volume declaration (#31202) (#31211)

* [bitnami/vault] Fix missing existing PVC volume declaration (#31202)

Signed-off-by: Frederic Lebouc <frederic_lebouc@yahoo.fr>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Update Chart.yaml

Signed-off-by: Carlos Rodríguez Hernández <carlos.rodriguez-hernandez@broadcom.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

---------

Signed-off-by: Frederic Lebouc <frederic_lebouc@yahoo.fr>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: Carlos Rodríguez Hernández <carlos.rodriguez-hernandez@broadcom.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Carlos Rodríguez Hernández <carlos.rodriguez-hernandez@broadcom.com>
This commit is contained in:
Frederic Lebouc
2025-01-23 16:31:07 +01:00
committed by GitHub
co-authored by Bitnami Containers Carlos Rodríguez Hernández
parent e7cb168ca2
commit f743319c46
3 changed files with 12 additions and 3 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
# Changelog
## 1.6.2 (2025-01-17)
## 1.6.3 (2025-01-23)
* [bitnami/vault] Release 1.6.2 ([#31445](https://github.com/bitnami/charts/pull/31445))
* [bitnami/vault] Fix missing existing PVC volume declaration (#31202) ([#31211](https://github.com/bitnami/charts/pull/31211))
## <small>1.6.2 (2025-01-17)</small>
* [bitnami/vault] Release 1.6.2 (#31445) ([b34be1a](https://github.com/bitnami/charts/commit/b34be1a754898b376f2aff703d68609ce81b6994)), closes [#31445](https://github.com/bitnami/charts/issues/31445)
## <small>1.6.1 (2024-12-19)</small>
+1 -1
View File
@@ -35,4 +35,4 @@ maintainers:
name: vault
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/vault
version: 1.6.2
version: 1.6.3
@@ -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 }}