Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-18docs: Add initial server-side backupsJames Fargher
Now that restore is supported by gitaly-backup we can add a more complete section on server-side backups.
2023-07-10gitaly-backup: Add -server-side option to create sub-commandJames Fargher
This option triggers gitaly-backup to use the new BackupRepository RPC to create backups. These backups are streamed from the gitaly node directly to the object-storage configured in config.backup.go_cloud_url. Tests added for the command are smoke tests as the backup logic itself is tested on backup.Manager. Changelog: added
2023-06-19gitaly-backup: Add backup-id option to restore commandJames Fargher
Allow the backup-id to be specified by the user. The manager backup ID used to be arbitrarily set to a timestamp. This matches what the create command does. It never used to matter because the backup ID was ignored on restore. Changelog: changed
2023-03-02docs: Update gitaly-backup docs for -remove-all-repositoriesJames Fargher
2023-02-13gitaly-backup: Use pointer layout by defaultJames Fargher
gitlab has been using the pointer layout since 15.3. See https://gitlab.com/gitlab-org/gitlab/-/issues/355945 Changelog: changed
2022-10-21Further tidy up of Markdownlint errorsEvan Read
2022-01-07Improved documentationGabriel Mazetto
2022-01-06Document gitaly-backup restore parametersGabriel Mazetto
2021-11-24Document object storage support in gitaly-backupdocs-backup-objectJames Fargher
2021-11-08gitaly-backup: Rename locator flag to layoutJames Fargher
While writing docs for gitaly-backup it became clear that using the name `locator` did not make sense. This would be a breaking change except that the flag is part of an experimental feature. Changelog: changed
2021-11-04Add instructions on how to create/restore backups using gitaly-backupJames Fargher