aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'charts/tesor/templates/pvc.yaml')
-rw-r--r--charts/tesor/templates/pvc.yaml22+0 −22
1 files changed, 0 insertions, 22 deletions
diff --git a/charts/tesor/templates/pvc.yaml b/charts/tesor/templates/pvc.yaml
deleted file mode 100644
--- a/charts/tesor/templates/pvc.yaml
+++ /dev/null
@@ -1,22 +0,0 @@
-# SPDX-FileCopyrightText: 2026 Nikolay Govorov
-# SPDX-License-Identifier: AGPL-3.0-or-later
-
-{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) }}
-apiVersion: v1
-kind: PersistentVolumeClaim
-metadata:
- name: {{ include "tesor.fullname" . }}
- labels:
- {{- include "tesor.labels" . | nindent 4 }}
-spec:
- accessModes:
- {{- toYaml .Values.persistence.accessModes | nindent 4 }}
- resources:
- requests:
- storage: {{ .Values.persistence.size }}
- {{- with .Values.persistence.storageClass }}
- storageClassName: {{ . | quote }}
- {{- end }}
-{{- end }}
-
-# vim: set filetype=helm: