blob: ad10f18f16ee27c26a703c6440b6589437a10e67 [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 }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: "{{ include "common.release" . }}"
Mike Elliottd32d36e2018-02-12 15:54:03 -050027 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:
Mike Elliottd32d36e2018-02-12 15:54:03 -050036 accessModes:
37 - {{ .Values.persistence.accessMode }}
38 resources:
39 requests:
40 storage: {{ .Values.persistence.size }}
Sylvain Desbureaux06a449b2019-12-06 18:27:53 +010041 storageClassName: {{ include "common.storageClass" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050042{{- end }}