Skip to content

CNPG Migration Guide

This guide will assist you in migrating to the new CNPG operator.

Prerequisites

  1. Install PGAdmin from the TrueCharts Stable train.

  2. Setup the tcdbinfo.sh script

  3. Add the system train to your TrueCharts Catalog

cnpg-add-system-train

Acquire Database Credentials

  1. Run tcdbinfo.sh to get a list of database credentials.
Terminal window
bash tcdbinfo.sh

cnpg-info

Connect to CNPG Databases in PGAdmin

  1. Click Add Server.

cnpg-pgadmin-add

  1. Choose a name for the database, this will only be used to help you identify it.

cnpg-pgadmin-name

  1. Enter database server and credentials previously acquired from tcdbinfo.sh script and save.

cnpg-pgadmin-creds

Backup CNPG Databases

  1. Right click on the database and select backup as shown below.

cnpg-pgadmin-backup

  1. Choose a name for the database backup and click backup.

cnpg-pgadmin-save

Remove Old CNPG

  1. Run the following command in system shell as root.
Terminal window
k3s kubectl delete --grace-period 30 --v=4 -k https://github.com/truecharts/manifests/delete2

Install cloudnative-pg

  1. Install cloudnative-pg from the system train, wait for it to go ACTIVE.

Prepare CNPG Apps

  1. Edit the app config of the CNPG application (home assistant in this example) and save the configuration without making any changes.

  2. Wait for all pods to be created and app to be Active. This may take a few minutes. In this example Home Assistant will show ACTIVE 3/3 when its ready.

  3. Get the name of the app deploy.

Terminal window
k3s kubectl get deploy -n ix-<app>
  1. Stop the main pod of the app you are migrating.
Terminal window
k3s kubectl scale deploy <app> -n ix-<app> --replicas=0

cnpg-scaled

Restore CNPG Databases

  1. Right click on the database and select restore as shown below in PGAdmin.

cnpg-pgadmin-restore

  1. Select the database backup you created previously.

cnpg-pgadmin-restore2

  1. Configure Data/Objects as shown below.

cnpg-pgadmin-restore3

  1. Configure Options as shown below and click restore.

cnpg-pgadmin-restore4

:::caution PGAdmin Error

PGAdmin may display an error during the restore process. This is known to occur and may be ignored if the app functions properly.

:::

  1. Start the main pod of the app you are migrating.
Terminal window
k3s kubectl scale deploy <app> -n ix-<app> --replicas=1