blob: 72bad411dbcba39cd7cb123cb88b479b2b55bfca [file] [log] [blame]
BorislavG3c751b32018-03-26 21:13:34 +03001{{/*
2# Copyright © 2017 Amdocs, AT&T, Bell Canada
3# #
4# # Licensed under the Apache License, Version 2.0 (the "License");
5# # you may not use this file except in compliance with the License.
6# # You may obtain a copy of the License at
7# #
8# # http://www.apache.org/licenses/LICENSE-2.0
9# #
10# # Unless required by applicable law or agreed to in writing, software
11# # distributed under the License is distributed on an "AS IS" BASIS,
12# # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# # See the License for the specific language governing permissions and
14# # limitations under the License.
15*/}}
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +010016{{- $global := . }}
17{{- if and $global.Values.persistence.enabled (not $global.Values.persistence.existingClaim) }}
18{{- if eq "True" (include "common.needPV" .) }}
19{{- range $i := until (int $global.Values.replicaCount)}}
BorislavG3c751b32018-03-26 21:13:34 +030020kind: PersistentVolume
21apiVersion: v1
22metadata:
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +010023 name: {{ include "common.fullname" $global }}-data-{{$i}}
24 namespace: {{ include "common.namespace" $global }}
BorislavG3c751b32018-03-26 21:13:34 +030025 labels:
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +010026 app: {{ include "common.fullname" $global }}
27 chart: "{{ $global.Chart.Name }}-{{ $global.Chart.Version | replace "+" "_" }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010028 release: "{{ include "common.release" $global }}"
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +010029 heritage: "{{ $global.Release.Service }}"
30 name: {{ include "common.fullname" $global }}
BorislavG3c751b32018-03-26 21:13:34 +030031spec:
BorislavG3c751b32018-03-26 21:13:34 +030032 capacity:
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +010033 storage: {{ $global.Values.persistence.size}}
BorislavG3c751b32018-03-26 21:13:34 +030034 accessModes:
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +010035 - {{ $global.Values.persistence.accessMode }}
36 persistentVolumeReclaimPolicy: {{ $global.Values.persistence.volumeReclaimPolicy }}
37 storageClassName: "{{ include "common.fullname" $global }}-data"
BorislavG3c751b32018-03-26 21:13:34 +030038 hostPath:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010039 path: {{ $global.Values.global.persistence.mountPath | default $global.Values.persistence.mountPath }}/{{ include "common.release" $global }}/{{ $global.Values.persistence.mountSubPath }}-{{$i}}
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +010040{{if ne $i (int $global.Values.replicaCount) }}
BorislavG3c751b32018-03-26 21:13:34 +030041---
Sylvain Desbureaux03c36f92019-11-29 15:22:29 +010042{{- end -}}
43{{- end -}}
44{{- end -}}
BorislavG3c751b32018-03-26 21:13:34 +030045{{- end -}}