X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=nonrtric%2Fhelm%2Fnonrtric%2Ftemplates%2Fpv1.yaml;fp=nonrtric%2Fhelm%2Fnonrtric%2Ftemplates%2Fpv1.yaml;h=c9ba128a817cdc3bffea74efff7e74726e5e30c5;hb=8a1a9a4f6864499d0340ff3b8e2de46eeda9ec33;hp=0000000000000000000000000000000000000000;hpb=46f7ba1892ac506611fb76d610e2752a0a923620;p=it%2Fdep.git diff --git a/nonrtric/helm/nonrtric/templates/pv1.yaml b/nonrtric/helm/nonrtric/templates/pv1.yaml new file mode 100644 index 00000000..c9ba128a --- /dev/null +++ b/nonrtric/helm/nonrtric/templates/pv1.yaml @@ -0,0 +1,35 @@ +############################################################################### +# Copyright (c) 2021 Nordix Foundation. # +# # +# 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.nonrtric.volume1.size }} + +kind: PersistentVolume +apiVersion: v1 +metadata: + name: nonrtric-pv1 + namespace: {{ include "common.namespace.nonrtric" . }} +spec: + capacity: + storage: {{ .Values.nonrtric.volume1.size}} + accessModes: + - ReadWriteOnce + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + hostPath: + path: /dockerdata-nfs/nonrtric/volume1 + storageClassName: {{ .Values.nonrtric.volume1.storageClassName }} + +{{- end }}