blob: 92d5eed0c4227e12961d570d2b90872eb25810a5 [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: PersistentVolumeClaim
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 }}"
26 release: "{{ .Release.Name }}"
27 heritage: "{{ .Release.Service }}"
Mike Elliottd32d36e2018-02-12 15:54:03 -050028 annotations:
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000029 "helm.sh/hook": pre-upgrade,pre-install
30 "helm.sh/hook-weight": "-1"
31 "helm.sh/hook-delete-policy": before-hook-creation
32{{- if .Values.persistence.annotations }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050033{{ toYaml .Values.persistence.annotations | indent 4 }}
34{{- end }}
35spec:
Jerome Doucerain7bd243e2018-03-02 22:14:27 -050036 selector:
37 matchLabels:
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000038 name: {{ include "common.fullname" . }}-migration
Mike Elliottd32d36e2018-02-12 15:54:03 -050039 accessModes:
40 - {{ .Values.persistence.accessMode }}
41 resources:
42 requests:
43 storage: {{ .Values.persistence.size }}
44{{- if .Values.persistence.storageClass }}
45{{- if (eq "-" .Values.persistence.storageClass) }}
46 storageClassName: ""
47{{- else }}
48 storageClassName: "{{ .Values.persistence.storageClass }}"
49{{- end }}
50{{- end }}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000051{{- end }}
52