blob: d2b4f0c76f027f863a041f750b8092d8c90daca6 [file] [log] [blame]
Sylvain Desbureaux7a235752019-11-28 15:01:45 +01001{{- if ne 0 (int .Values.global.aaf.hello.replicas) }}
Instrumental0c7bc942019-08-06 16:36:13 -05002{{- if and .Values.global.persistence.enabled (not .Values.persistence.existingClaim) -}}
Sylvain Desbureaux7a235752019-11-28 15:01:45 +01003{{- if eq "True" (include "common.needPV" .) -}}
Instrumental0c7bc942019-08-06 16:36:13 -05004#########
5## ============LICENSE_START====================================================
6## org.onap.aaf
7## ===========================================================================
8## Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
9## ===========================================================================
10## Licensed under the Apache License, Version 2.0 (the "License");
11## you may not use this file except in compliance with the License.
12## You may obtain a copy of the License at
13##
14## http://www.apache.org/licenses/LICENSE-2.0
15##
16## Unless required by applicable law or agreed to in writing, software
17## distributed under the License is distributed on an "AS IS" BASIS,
18## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19## See the License for the specific language governing permissions and
20## limitations under the License.
21## ============LICENSE_END====================================================
22##
23
24kind: PersistentVolume
25apiVersion: v1
26metadata:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010027 name: {{ include "common.release" . }}-aaf-hello-pv
Instrumental0c7bc942019-08-06 16:36:13 -050028 namespace: {{ include "common.namespace" . }}
29 labels:
30 app: {{ .Chart.Name }}-hello
31 chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010032 release: {{ include "common.release" . }}
Instrumental0c7bc942019-08-06 16:36:13 -050033 heritage: "{{ .Release.Service }}"
34 name: {{ include "common.fullname" . }}
35spec:
36 capacity:
ChrisCec86a532020-03-19 15:53:31 -050037 storage: {{ .Values.persistence.size}}
Instrumental0c7bc942019-08-06 16:36:13 -050038 accessModes:
ChrisCec86a532020-03-19 15:53:31 -050039 - {{ .Values.persistence.accessMode }}
40 persistentVolumeReclaimPolicy: {{ .Values.persistence.volumeReclaimPolicy }}
Instrumental0c7bc942019-08-06 16:36:13 -050041 hostPath:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010042 path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ include "common.release" . }}/{{ .Values.persistence.mountSubPath }}
Sylvain Desbureaux7a235752019-11-28 15:01:45 +010043 storageClassName: "{{ include "common.fullname" . }}-data"
44{{- end -}}
45{{- end -}}
Instrumental0c7bc942019-08-06 16:36:13 -050046{{- end -}}