Mike Elliott | 38692ad | 2018-03-22 11:26:49 -0400 | [diff] [blame] | 1 | {{/* |
Mahendra Raghuwanshi | 72b69c1 | 2019-04-04 10:43:25 +0000 | [diff] [blame] | 2 | # Copyright ▒ 2017 Amdocs, Bell Canada |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 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. |
Mike Elliott | 38692ad | 2018-03-22 11:26:49 -0400 | [diff] [blame] | 15 | */}} |
Mahendra Raghuwanshi | 72b69c1 | 2019-04-04 10:43:25 +0000 | [diff] [blame] | 16 | |
| 17 | {{- if .Values.global.migration.enabled }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 18 | kind: PersistentVolume |
| 19 | apiVersion: v1 |
| 20 | metadata: |
Mahendra Raghuwanshi | 72b69c1 | 2019-04-04 10:43:25 +0000 | [diff] [blame] | 21 | name: {{ include "common.fullname" . }}-migration |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 22 | namespace: {{ include "common.namespace" . }} |
| 23 | labels: |
kerenj | 0e93fb5 | 2018-03-06 14:46:42 +0000 | [diff] [blame] | 24 | app: {{ include "common.name" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 25 | chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 27 | heritage: "{{ .Release.Service }}" |
Mahendra Raghuwanshi | 72b69c1 | 2019-04-04 10:43:25 +0000 | [diff] [blame] | 28 | name: {{ include "common.fullname" . }}-migration |
| 29 | annotations: |
| 30 | "helm.sh/hook": pre-upgrade,pre-install |
| 31 | "helm.sh/hook-weight": "0" |
| 32 | "helm.sh/hook-delete-policy": before-hook-creation |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 33 | spec: |
| 34 | capacity: |
| 35 | storage: {{ .Values.persistence.size}} |
| 36 | accessModes: |
| 37 | - {{ .Values.persistence.accessMode }} |
| 38 | persistentVolumeReclaimPolicy: {{ .Values.persistence.volumeReclaimPolicy }} |
Sylvain Desbureaux | 06a449b | 2019-12-06 18:27:53 +0100 | [diff] [blame] | 39 | storageClassName: "{{ include "common.fullname" . }}-data" |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 40 | hostPath: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 41 | path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ include "common.release" . }}/{{ .Values.persistence.mountSubPath }} |
Mahendra Raghuwanshi | 72b69c1 | 2019-04-04 10:43:25 +0000 | [diff] [blame] | 42 | {{- end }} |