I was trying to upgrade from bitnami pg image 11 -> version 14. When trying to do so i was prompted with the following error:
The data directory was initialized by PostgreSQL version 11, which is not compatible with this version 14.0
In order to get around this, I created a new postgres deployment with a new PVC, used pgdump to take a backup of the data and imported it within the new postgres deployment which is running version 14.
However I'm going to need to repeat this process on larger databases which terabytes of data and don't think pgdump is going to be sufficient.
With the bitnami image is it possible to use the likes of pg_upgrade?