897bd071 by Adam Heath

Fix backup-local ConfigMap name in job-backup.

1 parent dd605a0f
...@@ -39,7 +39,7 @@ spec: ...@@ -39,7 +39,7 @@ spec:
39 secretName: {{ include "postgresql-rclone.fullname" . }}-auth 39 secretName: {{ include "postgresql-rclone.fullname" . }}-auth
40 - name: local-config 40 - name: local-config
41 configMap: 41 configMap:
42 name: {{ include "postgresql-rclone.fullname" . }}-local 42 name: {{ include "postgresql-rclone.fullname" . }}-backup-local
43 {{- if .Values.rclone.enabled }} 43 {{- if .Values.rclone.enabled }}
44 - name: rclone-auth 44 - name: rclone-auth
45 secret: 45 secret:
...@@ -63,7 +63,7 @@ spec: ...@@ -63,7 +63,7 @@ spec:
63 - name: BACKUP_KEEP_DAYS 63 - name: BACKUP_KEEP_DAYS
64 valueFrom: 64 valueFrom:
65 configMapKeyRef: 65 configMapKeyRef:
66 name: {{ include "postgresql-rclone.fullname" . }}-local 66 name: {{ include "postgresql-rclone.fullname" . }}-backup-local
67 key: BACKUP_KEEP_DAYS 67 key: BACKUP_KEEP_DAYS
68 - name: BACKUP_DIR 68 - name: BACKUP_DIR
69 value: /backups 69 value: /backups
......