PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment sauvegarder une base de données Postgres dans Kubernetes sur Google Cloud ?

Comme @Marco Lamina l'a dit, vous pouvez exécuter pg_dump sur le pod postgres comme

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]

Vous pouvez avoir un pod de travail qui exécute cette commande et l'exporte vers un système de stockage de fichiers tel qu'AWS s3.