stash
stash copied to clipboard
🛅 Backup your Kubernetes Stateful Applications
Sometime Swift backend can be unreliable and result this issue: https://github.com/restic/restic/issues/1860. Some of our user already facing similar issue. ```bash I1223 13:17:48.066819 1 status.go:288] Verifying repository integrity........... I1223 13:17:48.067078 1...
- Exclude files during backup: ``` stash.appscode.com/target-exclude: "/path/to/file1.txt,/path/to/file2.txt" ```
Sometimes backup may fail for network issue. In such cases, user expect to retry the backup. This retry logic should be configurable by the user. By default, Stash shouldn't retry....
Why? - Stash shouldn't modify `updateStrategy` of the StatefulSets. - Stash shouldn't delete workloads pods
Ref: https://github.com/stashed/stash/blob/e953c0afc9ae5300f3efbdbcfa8a6fc87e518886/pkg/controller/sidecar.go#L256
>Use of `MYSQL_PWD` to specify a MySQL password must be considered extremely insecure and should not be used. Some versions of ps include an option to display the environment of...
We can utilize `restic copy` command to move repositories between two backends. Ref: https://restic.readthedocs.io/en/stable/045_working_with_repos.html#copying-snapshots-between-repositories
This doc should show the following examples: - [ ] Exclude some files during backup. (using `exclude`) - [ ] Exclude some files during restore. ( using `exclude`) - [...
Test Against: - [ ] Database larger than 50GB - [ ] Volume larger than 50GB - [ ] Volume with lots of small files