Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/devtron-backups/templates/backup-on-aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
initContainers:
- name: postgres-app-backup-cronjob
image: postgres:12
image: postgres:{{ .Values.postgres_backup.postgresImageTag }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Get full image from values instead of only tag

volumeMounts:
- mountPath: /tmp
name: psql-volume
Expand Down
2 changes: 1 addition & 1 deletion charts/devtron-backups/templates/backup-on-azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
initContainers:
- name: postgres-app-backup-cronjob
image: postgres:12
image: postgres:{{ .Values.postgres_backup.postgresImageTag }}
volumeMounts:
- mountPath: /tmp
name: psql-volume
Expand Down
2 changes: 1 addition & 1 deletion charts/devtron-backups/templates/backup-on-gcp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
spec:
initContainers:
- name: postgres-app-backup-cronjob
image: postgres:12
image: postgres:{{ .Values.postgres_backup.postgresImageTag }}
volumeMounts:
- mountPath: /tmp
name: psql-volume
Expand Down
1 change: 1 addition & 0 deletions charts/devtron-backups/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ postgres_backup:
# Reference to secret which as postgresql password in PG_PASSWORD key
secretName: "devtron-secret"
host: "postgresql-postgresql.devtroncd"
postgresImageTag: "14"
enabled: false

argocd_backup:
Expand Down