PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Wie kann ich eine Postgres-Datenbank in Kubernetes in Google Cloud sichern?

Wie @Marco Lamina sagte, können Sie pg_dump auf einem Postgres-Pod wie

ausführen
DUMP
// pod-name         name of the postgres pod
// postgres-user    database user that is able to access the database
// database-name    name of the database
kubectl exec [pod-name] -- bash -c "pg_dump -U [postgres-user] [database-name]" > database.sql


RESTORE
// pod-name         name of the postgres pod
// postgres-user    database user that is able to access the database
// database-name    name of the database
cat database.sql | kubectl exec -i [pod-name] -- psql -U [postgres-user] -d [database-name]

Sie können einen Job-Pod haben, der diesen Befehl ausführt und ihn in ein Dateispeichersystem wie AWS s3 exportiert.