Ritu Sood | 2369910 | 2019-04-24 23:06:46 +0000 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, Bell Canada, AT&T |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | {{ if .Values.persistence.enabled }} |
| 16 | {{- $root := . -}} |
| 17 | {{ range $i, $e := until (int $root.Values.replicaCount) }} |
| 18 | --- |
| 19 | apiVersion: v1 |
| 20 | kind: PersistentVolume |
| 21 | metadata: |
Kiran Kamineni | 56c00a8 | 2019-05-20 17:19:40 -0700 | [diff] [blame] | 22 | name: {{ include "common.fullname" $root }}-data-{{ $i }} |
Ritu Sood | 2369910 | 2019-04-24 23:06:46 +0000 | [diff] [blame] | 23 | namespace: {{ $root.Release.Namespace }} |
| 24 | labels: |
| 25 | type: {{ $root.Values.persistence.storageType }} |
Kiran Kamineni | 56c00a8 | 2019-05-20 17:19:40 -0700 | [diff] [blame] | 26 | app: {{ include "common.fullname" $root }} |
Ritu Sood | 2369910 | 2019-04-24 23:06:46 +0000 | [diff] [blame] | 27 | chart: {{ $root.Chart.Name }}-{{ $root.Chart.Version | replace "+" "_" }} |
| 28 | release: {{ $root.Release.Name }} |
| 29 | heritage: {{ $root.Release.Service }} |
| 30 | spec: |
| 31 | capacity: |
Kiran Kamineni | 56c00a8 | 2019-05-20 17:19:40 -0700 | [diff] [blame] | 32 | storage: {{ $root.Values.persistence.storage }} |
Ritu Sood | 2369910 | 2019-04-24 23:06:46 +0000 | [diff] [blame] | 33 | accessModes: |
| 34 | - {{ $root.Values.persistence.accessMode }} |
Kiran Kamineni | 56c00a8 | 2019-05-20 17:19:40 -0700 | [diff] [blame] | 35 | storageClassName: "{{ include "common.fullname" $root }}-data" |
Ritu Sood | 2369910 | 2019-04-24 23:06:46 +0000 | [diff] [blame] | 36 | hostPath: |
| 37 | path: {{ $root.Values.persistence.mountPath }}/{{ $root.Release.Name }}/{{ $root.Values.persistence.mountSubPath }}-{{ $i }} |
| 38 | persistentVolumeReclaimPolicy: {{ $root.Values.persistence.volumeReclaimPolicy }} |
| 39 | {{ end }} |
| 40 | {{ end }} |
| 41 | |