theshire/kubernetes/apps/database/crunchy-postgres-operator
2024-10-17 21:14:20 -05:00
..
cluster up to two replicas 2024-10-17 20:59:00 -05:00
clustersecretstore adding database workloads 2024-09-05 01:33:23 -05:00
operator Update image pgo to v5.7.0 2024-10-17 13:33:33 +00:00
userinit-controller adding database workloads 2024-09-05 01:33:23 -05:00
ks.yaml adding database workloads 2024-09-05 01:33:23 -05:00
README.md adding database workloads 2024-09-05 01:33:23 -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