openstack-helm-infra/nfs-provisioner/templates/volume_claim.yaml
portdirect dae9b82918 NFS-Provisioner: Add support to back NFS with volume claims
This ps adds the ability for the NFS-provisioner to use a volume
claim for providing storage for other services. This provides the
ability to provide read-write-many access backed by a
read-write-once storage class, in situations where such a
requirement exists.

Change-Id: I7dcf79b871fd4fa699ee4e3a50151a654f27761f
2017-12-18 10:40:25 -05:00

38 lines
1.2 KiB
YAML

{{/*
Copyright 2017 The Openstack-Helm Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/}}
{{- if .Values.manifests.volume_claim }}
{{- if eq .Values.storage.type "persistentVolumeClaim" }}
{{- $envAll := . }}
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
{{ if empty .Values.storage.persistentVolumeClaim.name -}}
name: {{ .Release.Name }}
{{- else -}}
name: {{ .Values.storage.persistentVolumeClaim.name }}
{{- end }}
spec:
accessModes:
- {{ .Values.storage.persistentVolumeClaim.access_mode }}
resources:
requests:
storage: {{ .Values.storage.persistentVolumeClaim.size }}
storageClassName: {{ .Values.storage.persistentVolumeClaim.class_name }}
{{- end }}
{{- end }}