helm/pkg/cmd/testdata/testcharts/lib-chart/templates/_volume.tpl
Austin Abro 297f7b9acb
squash
Signed-off-by: Austin Abro <AustinAbro321@gmail.com>
2025-02-24 15:11:54 +00:00

22 lines
613 B
Smarty

{{- define "common.volume.configMap" -}}
{{- $name := index . 0 -}}
{{- $configMapName := index . 1 -}}
name: {{ $name }}
configMap:
name: {{ $configMapName }}
{{- end -}}
{{- define "common.volume.pvc" -}}
{{- $name := index . 0 -}}
{{- $claimName := index . 1 -}}
{{- $persistence := index . 2 -}}
name: {{ $name }}
{{- if $persistence.enabled }}
persistentVolumeClaim:
claimName: {{ $persistence.existingClaim | default $claimName }}
{{- else }}
emptyDir: {}
{{- end -}}
{{- end -}}