[bitnami/neo4j] fix: add apiVersion and kind to volumeClaimTemplates (#29361)

* fix: add apiVersion and kind to volumeClaimTemplates

Signed-off-by: Abdullah Alaqeel <abdullah.t.aqeel@gmail.com>
Signed-off-by: Abdullah Alaqeel <abdullah.alaqeel@fathom.io>

* Update CHANGELOG.md

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

---------

Signed-off-by: Abdullah Alaqeel <abdullah.t.aqeel@gmail.com>
Signed-off-by: Abdullah Alaqeel <abdullah.alaqeel@fathom.io>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Abdullah Alaqeel
2024-09-12 08:50:17 +02:00
committed by GitHub
co-authored by Bitnami Containers
parent ed8879b066
commit d9147330c6
3 changed files with 10 additions and 4 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
# Changelog # Changelog
## 0.1.8 (2024-08-28) ## 0.1.9 (2024-09-11)
* [bitnami/neo4j] Release 0.1.8 ([#29090](https://github.com/bitnami/charts/pull/29090)) * [bitnami/neo4j] fix: add apiVersion and kind to volumeClaimTemplates ([#29361](https://github.com/bitnami/charts/pull/29361))
## <small>0.1.8 (2024-08-28)</small>
* [bitnami/neo4j] Release 0.1.8 (#29090) ([5dea204](https://github.com/bitnami/charts/commit/5dea2043afc0d635f9d13540b8a28831b1fa72ad)), closes [#29090](https://github.com/bitnami/charts/issues/29090)
## <small>0.1.7 (2024-07-25)</small> ## <small>0.1.7 (2024-07-25)</small>
+1 -1
View File
@@ -35,4 +35,4 @@ sources:
- https://github.com/bitnami/charts/tree/main/bitnami/neo4j - https://github.com/bitnami/charts/tree/main/bitnami/neo4j
- https://github.com/bitnami/containers/tree/main/bitnami/neo4j - https://github.com/bitnami/containers/tree/main/bitnami/neo4j
- https://github.com/neo4j/neo4j - https://github.com/neo4j/neo4j
version: 0.1.8 version: 0.1.9
+3 -1
View File
@@ -296,7 +296,9 @@ spec:
{{- end }} {{- end }}
{{- if .Values.persistence.enabled }} {{- if .Values.persistence.enabled }}
volumeClaimTemplates: volumeClaimTemplates:
- metadata: - apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: data name: data
{{- if or .Values.persistence.annotations .Values.commonAnnotations }} {{- if or .Values.persistence.annotations .Values.commonAnnotations }}
{{- $claimAnnotations := include "common.tplvalues.merge" (dict "values" .Values.persistence.annotations .Values.commonAnnotations "context" .) | fromYaml }} {{- $claimAnnotations := include "common.tplvalues.merge" (dict "values" .Values.persistence.annotations .Values.commonAnnotations "context" .) | fromYaml }}