Skip to content

Commit

Permalink
fix(DMVP-4884): Changed pvc name
Browse files Browse the repository at this point in the history
  • Loading branch information
viktoryathegreat committed Aug 5, 2024
1 parent 6f5c145 commit 7218f7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/base/templates/pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: {{ .name }}
name: {{ .persistentVolumeClaimName | default (include "base.fullname" .) }}
labels:
{{- include "base.labels" $ | nindent 4 }}
{{- if .keepPvc }}
Expand All @@ -23,6 +23,6 @@ spec:
{{- if .enableDataSource }}
dataSource:
kind: PersistentVolumeClaim
name: {{ .name }}
name: {{ .persistentVolumeClaimName| default (include "base.fullname" .) }}
{{- end }}
{{- end }}

0 comments on commit 7218f7f

Please sign in to comment.