This repository has been archived on 2023-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
c4k-jira/doc/BackupAndRestore.md

50 lines
2 KiB
Markdown
Raw Normal View History

2021-09-08 10:51:03 +00:00
# Backup Architecture details
![](backup.svg)
* we use restic to produce small & encrypted backups
* backup is scheduled at `schedule: "10 23 * * *"`
2021-09-29 07:49:04 +00:00
* Jira stores files on `/var/jira/export`, these files are backuped. By default jira produces two exports per day.
* As jira provides a full xml export postgres is not needed.
2021-09-08 10:51:03 +00:00
2021-09-24 13:13:47 +00:00
## Manual init the restic repository for the first time
1. apply backup-and-restore pod:
`kubectl apply -f src/main/resources/backup/backup-restore.yaml`
1. exec into pod and execute restore pod
`kubectl exec -it backup-restore -- /usr/local/bin/init.sh`
1. remove backup-and-restore pod:
`kubectl delete pod backup-restore
2021-09-08 10:51:03 +00:00
2021-09-24 13:13:47 +00:00
## Manual backup the restic repository for the first time
2021-09-08 10:51:03 +00:00
2021-09-29 07:49:04 +00:00
1.Create a jira export:
Jira > Settings > System -> Backup system
1. Choose a filename `backup-filename.xml`. Your file will be stored to `/var/backup/export`.
2021-09-24 13:13:47 +00:00
1. apply backup-and-restore pod:
`kubectl apply -f src/main/resources/backup/backup-restore.yaml`
1. exec into pod and execute restore pod
`kubectl exec -it backup-restore -- /usr/local/bin/backup.sh`
1. remove backup-and-restore pod:
`kubectl delete pod backup-restore`
2021-09-08 10:51:03 +00:00
2021-09-24 13:13:47 +00:00
## Manual restore
1. apply backup-and-restore pod:
`kubectl apply -f src/main/resources/backup/backup-restore.yaml`
1. exec into pod and execute restore pod
`kubectl exec -it backup-restore -- /usr/local/bin/restore.sh`
2021-09-29 07:49:04 +00:00
1. In case of already set up server:
1. Import one of Jira exportet backups:
Jira > Settings > System > Restore System
1. Choose one of your bakcuped files located at `/var/jira/restic-restore/export/`.
E.g. `/var/jira/restic-restore/export/backup-filename.xml`.
1. In case of installation wizzard:
1. Choose restore from backup
1. Choose one of your bakcuped files located at `/var/jira/restic-restore/export/`.
E.g. `/var/jira/restic-restore/export/backup-filename.xml`
2021-09-24 13:13:47 +00:00
1. remove backup-and-restore pod:
`kubectl delete pod backup-restore`