diff options
author | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-04-10 15:36:28 -0700 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-04-10 15:36:28 -0700 |
commit | 858a95e48507cde00977408ee6cf8feddc13e063 (patch) | |
tree | aec905804238a3020e3228a5e5c285f10e9341c3 /vnfs/DAaaS/model-repo/templates/pvc.yaml | |
parent | e339330753f696f21c13f1ef70087a474a85308d (diff) |
Model Repo package
Added Model repo package consists of Minio Helm charts
Change-Id: I47427cbc7e745f658a1dcf75742b3ae3226fc3d0
Issue-ID: ONAPARC-487
Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
Diffstat (limited to 'vnfs/DAaaS/model-repo/templates/pvc.yaml')
-rw-r--r-- | vnfs/DAaaS/model-repo/templates/pvc.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/vnfs/DAaaS/model-repo/templates/pvc.yaml b/vnfs/DAaaS/model-repo/templates/pvc.yaml new file mode 100644 index 00000000..3f4cbb03 --- /dev/null +++ b/vnfs/DAaaS/model-repo/templates/pvc.yaml @@ -0,0 +1,27 @@ +{{- if eq .Values.mode "standalone" }} +{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) }} +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: {{ template "minio.fullname" . }} + labels: + app: {{ template "minio.name" . }} + chart: {{ template "minio.chart" . }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} +spec: +{{- if and .Values.nasgateway.enabled .Values.nasgateway.pv }} + selector: + matchLabels: + pv: {{ .Values.nasgateway.pv | quote }} +{{- end }} + accessModes: + - {{ .Values.persistence.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.size | quote }} +{{- if .Values.persistence.storageClass }} + storageClassName: {{ .Values.persistence.storageClass | quote }} +{{- end }} +{{- end }} +{{- end }} |