mirror of
https://github.com/nikdoof/helm-charts.git
synced 2025-12-14 14:02:17 +00:00
* Import nfs-client-provisioner from helm/stable repo * Update chart testing * Correct testing
18 lines
433 B
YAML
18 lines
433 B
YAML
{{ if .Values.nfs.mountOptions -}}
|
|
kind: PersistentVolumeClaim
|
|
apiVersion: v1
|
|
metadata:
|
|
name: pvc-{{ template "nfs-client-provisioner.fullname" . }}
|
|
spec:
|
|
accessModes:
|
|
- {{ .Values.storageClass.accessModes }}
|
|
volumeMode: Filesystem
|
|
storageClassName: ""
|
|
selector:
|
|
matchLabels:
|
|
nfs-client-provisioner: {{ template "nfs-client-provisioner.fullname" . }}
|
|
resources:
|
|
requests:
|
|
storage: 10Mi
|
|
{{ end -}}
|