Performing ONLY Restic Volume backups #3479
Unanswered
Angelin01
asked this question in
Community support Q&A
Replies: 1 comment 1 reply
-
Hi @Angelin01 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are trying to setup scheduled backups for some of our applications, but would like to backup only the data, not anything else, as we use helm charts and other automation to control the infrastructure, and as such those backups are unnecessary.
Using the helm chart, we tried setting up a backup schedule similar to this one:
The values also included the necessary Restic values, including the default Restic to volumes option (minimized here, obviously):
However, we noticed that this did not produce any Restic backups, probably due to us pointing the only resources to the PVs and PVCs. We also tried disabling backups (
backupsEnabled: false
) and leaving all resources enabled, which works as we intend (Restic backups are created normally, nothing else is), but has the side effect that the default storage location is not created on ahelm install
if it didn't exist previously, which is not ideal.I searched through the documentation and issues and did not find anything similar, surprisingly. I must admit, my knowledge of Kubernetes is still a bit lacking, so there's a considerable chance this is just ignorance on my part.
So, we'd like to know: is there a way to perform this operation without excluding all resources? Should I point my backups only to one specific resource? If so, which one?
Beta Was this translation helpful? Give feedback.
All reactions