We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in _> CRD
out: Statefulset, Secret, Service + AppBinding
Vault / Database -> AppBinding
SidecarBackup |
VolumeBackup , Diskbackup
crd: BackupJob
backup process: write backup to disk, upload -- init container[0] takes backup -- container[0] uploads
recover process: download, restore -- init container downloads -- container[0] restores
mysqldump -host | restic -r s3:mydb
Non-namespaced CRD: BackupTemplate, RecoveryTemplate
apiVersion: stash.appscode.com/v1alpha1 kind: BackupTemplate metadata name: mysql-backup spec: command: mysqldump -host {{.DBSVC}}:{{port}} | restic -r {{RepoName}}
apiVersion: stash.appscode.com/v1alpha1 kind: RecoveryTemplate metadata name: mysql-recovery spec: container: ---- command: restic -r {{RepoName}} | mysqld -host {{.DBSVC}}:{{port}}
apiVersion: stash.appscode.com/v1alpha1 kind: BackupJob metadata name: gitlab-backup namespace: default spec: backend: name: Repository-crd namespace: Repository-crd appRef: name: gitlab-db namespace: gitlab template: name: mysql-backup parameters: schedule: cron:
BackupJob + (template) -> k8s:Job
Default backup for any workload.
The text was updated successfully, but these errors were encountered:
Dup: #648
Sorry, something went wrong.
No branches or pull requests
in _> CRD
out: Statefulset, Secret, Service + AppBinding
Vault / Database -> AppBinding
SidecarBackup |
VolumeBackup , Diskbackup
crd: BackupJob
mysqldump -host | restic -r s3:mydb
Non-namespaced CRD: BackupTemplate, RecoveryTemplate
BackupJob + (template) -> k8s:Job
Default backup for any workload.
The text was updated successfully, but these errors were encountered: