blob: b94906407779044f9cadcbc9dc97853bf84483f9 [file] [log] [blame]
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00001# 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
vagrant1a3a3552018-03-10 23:56:32 +000015#{{ if .Values.persistence.enabled }}
16{{- $root := . -}}
17{{ range $i, $e := until (atoi (quote $root.Values.replicaCount) | default 3) }}
18---
19apiVersion: v1
20kind: PersistentVolume
21metadata:
Harish V Kajur8e7cbd22018-05-07 14:02:46 +000022 name: {{ $root.Release.Name }}-{{ $root.Values.service.name }}-{{ $i }}
vagrant1a3a3552018-03-10 23:56:32 +000023 namespace: {{ $root.Release.Namespace }}
24 labels:
25 type: {{ $root.Values.persistence.storageType }}
26 app: {{ $root.Values.service.name }}
27 chart: {{ $root.Chart.Name }}-{{ $root.Chart.Version | replace "+" "_" }}
28 release: {{ $root.Release.Name }}
29 heritage: {{ $root.Release.Service }}
30spec:
31 capacity:
32 storage: {{ $root.Values.persistence.size }}
33 accessModes:
34 - {{ $root.Values.persistence.accessMode }}
35 hostPath:
36 path: {{ $root.Values.persistence.mountPath }}/{{ $root.Release.Name }}/{{ $root.Values.persistence.mountSubPath }}-{{ $i }}
37 persistentVolumeReclaimPolicy: {{ $root.Values.persistence.volumeReclaimPolicy }}
38{{ end }}
Harish V Kajur8e7cbd22018-05-07 14:02:46 +000039#{{ end }}