Interlegis Public Rancher Charts for Kubernetes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.4 KiB

{{- if .Values.velero.backup.enabled }}
apiVersion: velero.io/v1
kind: Schedule
metadata:
name: {{ include "portalmodelo.fullname" . }}-weekly
namespace: {{ .Values.velero.namespace }}
spec:
# generate a random backup time between 1 and 5 AM on sunday
schedule: {{ mod (randNumeric 2) 60 }} {{ mod (randNumeric 1) 6 }} * * 0
template:
includedNamespaces:
- {{ .Release.Namespace }}
{{- with .Values.velero.backup.excludedResources }}
excludedResources:
{{- toYaml . | nindent 8 }}
{{- end }}
# every sunday backup is good for 45 days
ttl: 1080h0m0s
{{- if .Values.velero.backup.useSnapshotBackup }}
defaultVolumesToFsBackup: false
snapshotVolumes: true
snapshotMoveData: {{ .Values.velero.backup.snapshotMoveData }}
{{- else }}
defaultVolumesToFsBackup: true
snapshotVolumes: false
{{- end }}
hooks:
resources:
- name: repozo
includedResources:
- pods
labelSelector:
matchLabels:
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/name: portalmodelo
app.kubernetes.io/component: zeoserver
pre:
- exec:
command:
- "/bin/bash"
- "-c"
- "/plone/Python-2.7/bin/python /plone/instance/bin/backup"
timeout: 3600s
onError: Continue
useOwnerReferencesInBackup: false
{{- end }}