Browse Source

Update SAPL backup to use snapshots on weekdays

master
Fábio Kaiser Rauber 2 years ago
parent
commit
88e04bc469
  1. 8
      charts/sapl/v0.2.0/templates/velero-schedule-monthly.yaml
  2. 4
      charts/sapl/v0.2.0/templates/velero-schedule-weekdays.yaml
  3. 4
      charts/sapl/v0.2.0/templates/velero-schedule-weekly.yaml
  4. 2
      charts/sapl/v0.2.0/values.yaml

8
charts/sapl/v0.2.0/templates/velero-schedule-monthly.yaml

@ -14,10 +14,10 @@ spec:
excludedResources: excludedResources:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
snapshotVolumes: {{ .Values.velero.backup.snapshotVolumes }} snapshotVolumes: false
# every weekday backup is good for the next year (365 days) # every monthly backup is good for the 6 months (~180 days)
ttl: 8760h0m0s ttl: 4380h0m0s
defaultVolumesToRestic: {{ .Values.velero.backup.defaultVolumesToRestic }} defaultVolumesToFsBackup: true
hooks: hooks:
resources: resources:
- name: pgdump - name: pgdump

4
charts/sapl/v0.2.0/templates/velero-schedule-weekdays.yaml

@ -14,10 +14,10 @@ spec:
excludedResources: excludedResources:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
snapshotVolumes: {{ .Values.velero.backup.snapshotVolumes }} snapshotVolumes: true
# every weekday backup is good for the next week (7 days) # every weekday backup is good for the next week (7 days)
ttl: 168h0m0s ttl: 168h0m0s
defaultVolumesToRestic: {{ .Values.velero.backup.defaultVolumesToRestic }} defaultVolumesToFsBackup: false
hooks: hooks:
resources: resources:
- name: pgdump - name: pgdump

4
charts/sapl/v0.2.0/templates/velero-schedule-weekly.yaml

@ -14,10 +14,10 @@ spec:
excludedResources: excludedResources:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
snapshotVolumes: {{ .Values.velero.backup.snapshotVolumes }} snapshotVolumes: false
# every sunday backup is good for 30 days (aprox. 1 month) # every sunday backup is good for 30 days (aprox. 1 month)
ttl: 744h0m0s ttl: 744h0m0s
defaultVolumesToRestic: {{ .Values.velero.backup.defaultVolumesToRestic }} defaultVolumesToFsBackup: true
hooks: hooks:
resources: resources:
- name: pgdump - name: pgdump

2
charts/sapl/v0.2.0/values.yaml

@ -78,8 +78,6 @@ velero:
namespace: velero namespace: velero
backup: backup:
enabled: true enabled: true
snapshotVolumes: false
defaultVolumesToRestic: true
# cert-manager objects are usually blocked during backup # cert-manager objects are usually blocked during backup
excludedResources: excludedResources:
- certificates.cert-manager.io - certificates.cert-manager.io

Loading…
Cancel
Save