Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit bd2943c

Browse files
authored
Fix conditions for qdrant backup (#439)
1 parent 3ccdefc commit bd2943c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

helm/bloop/templates/qdrant-backup-script.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Values.qdrant.backup -}}
1+
{{ if .Values.qdrant.backup.enabled -}}
22
apiVersion: v1
33
kind: ConfigMap
44
metadata:

helm/bloop/templates/qdrant-backup-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Values.qdrant.backup -}}
1+
{{ if .Values.qdrant.backup.enabled -}}
22
apiVersion: v1
33
kind: Secret
44
metadata:

helm/bloop/templates/qdrant-statefulset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
securityContext:
2929
{{- toYaml .Values.securityContext | nindent 8 }}
3030
containers:
31-
{{ if .Values.qdrant.backup }}
31+
{{ if .Values.qdrant.backup.enabled }}
3232
- name: {{ .Chart.Name }}-qdrant-backup
3333
image: amazon/aws-cli:2.11.15
3434
imagePullPolicy: {{ .Values.qdrant.image.pullPolicy }}
@@ -154,4 +154,4 @@ spec:
154154
- name: {{ include "qdrant.fullname" . }}-backup-script
155155
configMap:
156156
name: {{ include "qdrant.fullname" . }}-backup-script
157-
{{- end }}
157+
{{- end }}

0 commit comments

Comments
 (0)