blob: 7d81805cda07cd4d83558fd8d7667ce0aed3b8e6 [file] [log] [blame]
Mike Elliott38692ad2018-03-22 11:26:49 -04001{{/*
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +00002# Copyright ▒ 2017 Amdocs, Bell Canada
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
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 Elliott38692ad2018-03-22 11:26:49 -040015*/}}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000016
17{{- if .Values.global.migration.enabled }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050018kind: PersistentVolume
19apiVersion: v1
20metadata:
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000021 name: {{ include "common.fullname" . }}-migration
Mike Elliottd32d36e2018-02-12 15:54:03 -050022 namespace: {{ include "common.namespace" . }}
23 labels:
kerenj0e93fb52018-03-06 14:46:42 +000024 app: {{ include "common.name" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050025 chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050027 heritage: "{{ .Release.Service }}"
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000028 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 Elliottd32d36e2018-02-12 15:54:03 -050033spec:
34 capacity:
35 storage: {{ .Values.persistence.size}}
36 accessModes:
37 - {{ .Values.persistence.accessMode }}
38 persistentVolumeReclaimPolicy: {{ .Values.persistence.volumeReclaimPolicy }}
Sylvain Desbureaux06a449b2019-12-06 18:27:53 +010039 storageClassName: "{{ include "common.fullname" . }}-data"
Mike Elliottd32d36e2018-02-12 15:54:03 -050040 hostPath:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010041 path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ include "common.release" . }}/{{ .Values.persistence.mountSubPath }}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000042{{- end }}