897bd071 by Adam Heath

Fix backup-local ConfigMap name in job-backup.

1 parent dd605a0f
......@@ -39,7 +39,7 @@ spec:
secretName: {{ include "postgresql-rclone.fullname" . }}-auth
- name: local-config
configMap:
name: {{ include "postgresql-rclone.fullname" . }}-local
name: {{ include "postgresql-rclone.fullname" . }}-backup-local
{{- if .Values.rclone.enabled }}
- name: rclone-auth
secret:
......@@ -63,7 +63,7 @@ spec:
- name: BACKUP_KEEP_DAYS
valueFrom:
configMapKeyRef:
name: {{ include "postgresql-rclone.fullname" . }}-local
name: {{ include "postgresql-rclone.fullname" . }}-backup-local
key: BACKUP_KEEP_DAYS
- name: BACKUP_DIR
value: /backups
......