Skip to content

Commit

Permalink
Merge pull request #2706 from headlamp-k8s/helm-storage-fix
Browse files Browse the repository at this point in the history
charts: Fix pvc storage requirement
  • Loading branch information
joaquimrocha authored Dec 20, 2024
2 parents e069d3f + ed1f958 commit b762a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/headlamp/templates/pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
{{- end}}
resources:
requests:
storage: {{ .Values.persistentVolumeClaim.size }}
storage: {{ required "A valid .Values.persistentVolumeClaim.size entry required!" .Values.persistentVolumeClaim.size }}
{{- with .Values.persistentVolumeClaim.volumeMode }}
volumeMode: {{ . }}
{{- end }}
Expand Down

0 comments on commit b762a52

Please sign in to comment.