blob: 56b3ba8b02513a4a69235331268587d45a6a248d [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 }}
Andreas Geisslercfd84342023-08-16 17:18:49 +020017{{- if .Values.global.cassandra.useOperator }}
dasarathi52802465e8f782023-05-03 09:51:20 +000018{{ else }}
Akansha Dua7b6e1982019-09-04 13:36:12 +000019{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}}
Akansha Dua7b6e1982019-09-04 13:36:12 +000020---
21kind: PersistentVolumeClaim
22apiVersion: v1
23metadata:
24 name: {{ include "common.fullname" . }}-backup-data
25 namespace: {{ include "common.namespace" . }}
26 labels:
27 app: {{ include "common.name" . }}-backup
28 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010029 release: "{{ include "common.release" . }}"
Akansha Dua7b6e1982019-09-04 13:36:12 +000030 heritage: "{{ .Release.Service }}"
31{{- if .Values.persistence.annotations }}
32 annotations:
33{{ toYaml .Values.persistence.annotations | indent 4 }}
34{{- end }}
35spec:
Akansha Dua7b6e1982019-09-04 13:36:12 +000036 accessModes:
37 - {{ .Values.persistence.accessMode }}
38 resources:
39 requests:
40 storage: {{ .Values.persistence.size }}
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +010041 storageClassName: {{ include "common.storageClass" . }}
Akansha Dua7b6e1982019-09-04 13:36:12 +000042{{- end -}}
43{{- end -}}
dasarathi52802465e8f782023-05-03 09:51:20 +000044{{- end -}}