blob: dd7f3810a07ace523960556727dc3af5b0a4c7ba [file] [log] [blame]
Akansha Dua7b6e1982019-09-04 13:36:12 +00001{{/*
2# Copyright © 2019 Amdocs, Bell Canada
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.
15*/}}
16{{- if .Values.backup.enabled }}
17{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}}
Akansha Dua7b6e1982019-09-04 13:36:12 +000018---
19kind: PersistentVolumeClaim
20apiVersion: v1
21metadata:
22 name: {{ include "common.fullname" . }}-backup-data
23 namespace: {{ include "common.namespace" . }}
24 labels:
25 app: {{ include "common.name" . }}-backup
26 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
27 release: "{{ .Release.Name }}"
28 heritage: "{{ .Release.Service }}"
29{{- if .Values.persistence.annotations }}
30 annotations:
31{{ toYaml .Values.persistence.annotations | indent 4 }}
32{{- end }}
33spec:
Akansha Dua7b6e1982019-09-04 13:36:12 +000034 accessModes:
35 - {{ .Values.persistence.accessMode }}
36 resources:
37 requests:
38 storage: {{ .Values.persistence.size }}
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +010039 storageClassName: {{ include "common.storageClass" . }}
Akansha Dua7b6e1982019-09-04 13:36:12 +000040{{- end -}}
41{{- end -}}