Skip to content

Commit

Permalink
Merge pull request #2486 from amazeeio/k8p-schedule-quote-fix
Browse files Browse the repository at this point in the history
K8p schedule quote fix
  • Loading branch information
Schnitzel authored Jan 27, 2021
2 parents 84e396f + 0913124 commit b9cd7f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
schedule: '{{ .Values.check.schedule }}'
prune:
retention:
keepDaily: '{{ .Values.prune.retention.keepDaily }}'
keepWeekly: '{{ .Values.prune.retention.keepWeekly }}'
keepMonthly: '{{ .Values.prune.retention.keepMonthly }}'
keepDaily: {{ .Values.prune.retention.keepDaily }}
keepWeekly: {{ .Values.prune.retention.keepWeekly }}
keepMonthly: {{ .Values.prune.retention.keepMonthly }}
schedule: '{{ .Values.prune.schedule }}'
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ objects:
schedule: '${CHECK_SCHEDULE}'
prune:
retention:
keepDaily: ${DAILY_BACKUP_RETENTION}
keepWeekly: ${WEEKLY_BACKUP_RETENTION}
keepMonthly: ${MONTHLY_BACKUP_RETENTION}
keepDaily: ${{DAILY_BACKUP_RETENTION}}
keepWeekly: ${{WEEKLY_BACKUP_RETENTION}}
keepMonthly: ${{MONTHLY_BACKUP_RETENTION}}
schedule: '${PRUNE_SCHEDULE}'

0 comments on commit b9cd7f9

Please sign in to comment.