File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -34,4 +34,6 @@ dependencies:
3434# description: Critical bug
3535annotations :
3636 artifacthub.io/prerelease : " true"
37- artifacthub.io/changes : " "
37+ artifacthub.io/changes : |
38+ - kind: fixed
39+ description: Broken rendering of media PVC
Original file line number Diff line number Diff line change 44apiVersion : v1
55kind : PersistentVolumeClaim
66metadata :
7- {{- with .Values.extraAnnotations }}
7+ {{- with $ .Values.extraAnnotations }}
88 annotations :
99 {{- range $key, $value := . }}
1010 {{ $key }}: {{ quote $value }}
@@ -16,19 +16,19 @@ metadata:
1616 app.kubernetes.io/instance : {{ $.Release.Name }}
1717 app.kubernetes.io/managed-by : {{ $.Release.Service }}
1818 helm.sh/chart : {{ include "defectdojo.chart" $ }}
19- {{- range $key, $value := .Values.extraLabels }}
19+ {{- range $key, $value := $ .Values.extraLabels }}
2020 {{ $key }}: {{ quote $value }}
2121 {{- end }}
2222 name : {{ $fullName }}
23- namespace : {{ .Release.Namespace }}
23+ namespace : {{ $ .Release.Namespace }}
2424spec :
2525 accessModes :
2626 {{- toYaml .persistentVolumeClaim.accessModes | nindent 4 }}
2727 resources :
2828 requests :
2929 storage : {{ .persistentVolumeClaim.size }}
30- {{- if .persistentVolumeClaim.storageClassName }}
31- storageClassName : {{ .persistentVolumeClaim.storageClassName }}
30+ {{- with .persistentVolumeClaim.storageClassName }}
31+ storageClassName : {{ . }}
3232 {{- end }}
3333{{- end }}
3434{{- end }}
You can’t perform that action at this time.
0 commit comments