Merge "kubernetes rke install sh and heat RI"
[oom.git] / kubernetes / dmaap / components / message-router / charts / message-router-kafka / templates / pv.yaml
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 {{- $root := . -}}
16 {{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}}
17 {{ range $i, $e := until (atoi (quote $root.Values.replicaCount) | default 3) }}
18 ---
19 apiVersion: v1
20 kind: PersistentVolume
21 metadata:
22   name: {{ $root.Release.Name }}-{{ $root.Values.service.name }}-{{ $i }}
23   namespace: {{ $root.Release.Namespace }}
24   labels:
25     app: {{ $root.Values.service.name }}
26     chart: {{ $root.Chart.Name }}-{{ $root.Chart.Version | replace "+" "_" }}
27     release: {{ $root.Release.Name }}
28     heritage: {{ $root.Release.Service }}
29 spec:
30   capacity:
31     storage: {{ $root.Values.persistence.size }}
32   accessModes:
33     - {{ $root.Values.persistence.accessMode }}
34   hostPath:
35     path: {{ $root.Values.persistence.mountPath }}/{{ $root.Release.Name }}/{{ $root.Values.persistence.mountSubPath }}-{{ $i }}
36   persistentVolumeReclaimPolicy: {{ $root.Values.persistence.volumeReclaimPolicy }}
37 {{ end }}
38 {{ end }}
39