Browse Source

Enable hybrid edemocracia backups (snapshots and FS)

master
Fábio Kaiser Rauber 2 years ago
parent
commit
dedbed6418
  1. 8
      charts/edemocracia/v0.4.0/templates/velero-schedule-monthly.yaml
  2. 6
      charts/edemocracia/v0.4.0/templates/velero-schedule-weekdays.yaml
  3. 4
      charts/edemocracia/v0.4.0/templates/velero-schedule-weekly.yaml
  4. 2
      charts/edemocracia/v0.4.0/values.yaml

8
charts/edemocracia/v0.4.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 next 6 months (~180 days)
ttl: 8760h0m0s ttl: 4380h0m0s
defaultVolumesToRestic: {{ .Values.velero.backup.defaultVolumesToRestic }} defaultVolumesToFsBackup: true
hooks: hooks:
resources: resources:
- name: pgdump - name: pgdump

6
charts/edemocracia/v0.4.0/templates/velero-schedule-weekdays.yaml

@ -6,7 +6,7 @@ metadata:
namespace: {{ .Values.velero.namespace }} namespace: {{ .Values.velero.namespace }}
spec: spec:
# generate a random backup time between 1 and 5 AM on weekdays # generate a random backup time between 1 and 5 AM on weekdays
schedule: {{ mod (randNumeric 2) 60 }} {{ mod (randNumeric 1) 6 }} * * 1-5 schedule: {{ mod (randNumeric 2) 60 }} {{ mod (randNumeric 1) 6 }} * * MON,WED,FRI
template: template:
includedNamespaces: includedNamespaces:
- {{ .Release.Namespace }} - {{ .Release.Namespace }}
@ -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/edemocracia/v0.4.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/edemocracia/v0.4.0/values.yaml

@ -201,8 +201,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