Както каза @Marco Lamina, можете да стартирате pg_dump на postgres pod като
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]
Можете да имате група за работа, която изпълнява тази команда и я експортира в система за съхранение на файлове като AWS s3.