Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
appVersion: "1.0"
description: A Helm chart for Devtron Backups
name: devtron-backups
version: 0.1.9
version: 0.1.10
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: {{ .Values.postgres_backup.postgresImage }}
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: {{ .Values.postgres_backup.postgresImage }}
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: {{ .Values.postgres_backup.postgresImage }}
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"
postgresImage: "postgres:14"
enabled: false

argocd_backup:
Expand Down