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
2021-09-08 12:51:03 +02:00

786 B

Backup Architecture details

  • we use restic to produce small & encrypted backups
  • backup is scheduled at schedule: "10 23 * * *"
  • Jira stores files on /var/jira, these files are backuped. If you create a jira xml backup located in /var/jira this file will also be backed up.
  • postgres db is backed up as pgdump

Manual restore

  1. Scale Jira deployment down: kubectl scale deployment jira --replicas=0

  2. apply backup and restore pod: kubectl apply -f src/main/resources/backup/backup-restore.yaml

  3. exec into pod and execute restore pod kubectl exec -it backup-restore -- /usr/local/bin/restore.sh

  4. Scale Jira deployment up: kubectl scale deployment jira --replicas=1

  5. Update index of Jira: Jira > Settings > System > Advanced > Indexing