Trying to understand if the native awxbackup & awxrestore commands work with an external unmanaged database , azure postgres flexible in my case.
- A generic search tells that it will work only for managed postgres databases deployed by awx.
- Went through lots of topics in this forum but all point to & have resolution to managed databases only.
- Some notes from search provides below notes. Are they accurate ?
- The AWX Operator backup is primarily for in-cluster managed PostgreSQL databases.
- For external PostgreSQL, you need to use standard PostgreSQL backup tools like
pg_dump
. - Ensure the same PostgreSQL role is used for both the AWX Kubernetes cluster and the external database for a successful migration with
pg_dump
andpg_restore
.