softplayer-helm-lib/charts/workload-testing/templates/pvc/_pvc.tpl
2024-05-13 17:20:21 +02:00

24 lines
707 B
Smarty

{{- define "lib.pvc" -}}
{{- range $k, $v := .Values.storage }}
{{- $customName := printf "%s-%s" (include "chart.fullname" $) $k }}
---
# ---------------------------------------------------------------------
# This pvc is created as a part of softplayer helm library
# please see /lib/tempaltes/pvc/_pvc.tpl
# ---------------------------------------------------------------------
apiVersion: v1
kind: PersistentVolumeClaim
{{- include "lib.metadata" (dict "Context" $ "customName" $customName)}}
spec:
{{- with $v.accessModes }}
accessModes:
{{ toYaml . | indent 4}}
{{- end }}
resources:
requests:
storage: {{ $v.size }}
storageClassName: {{ $v.storageClassName }}
{{- end }}
{{- end -}}