theshire/kubernetes/apps/database/crunchy-postgres-operator
2024-07-08 16:07:09 -05:00
..
cluster Update password to be uniform with other arrs. 2024-07-08 16:07:09 -05:00
clustersecretstore Stand up crunchy-postgres-chonk server 2024-04-09 05:17:44 -05:00
operator Update pgo Docker tag to v5.6.0 2024-06-18 17:37:40 +00:00
userinit-controller Merge pull request 'Update dependency HelmRelease to helm.toolkit.fluxcd.io/v2' (#279) from renovate/helmrelease-2.x into main 2024-05-30 13:41:29 -05:00
ks.yaml Stand up crunchy-postgres-chonk server 2024-04-09 05:17:44 -05:00
README.md pgo client notes for manual restores and backups. 2024-04-09 12:06:05 -05:00

Helpful PGO Commands

Grab the cli from Github: GitHub Docs

Point In Time Restore

pgo show postgres -n database for backup information

Whole cluster

pgo restore postgres -n database \
    --options "--type=time --target='2024-04-09 11:00:03+00'" \
    --repoName repo1

Individual databases

pgo restore postgres -n database \
    --options "--type=time --target='2024-04-09 11:00:03+00' --db-include=postgres" \
    --repoName repo1

Manual full backup

pgo backup postgres -n database --repoName repo1