Upgrade Portworx Central from versions 1.2.x to 2.8.0
Portworx Central on-premises supports upgrades to version n from versions n-1 or n-2 versions. For example, if you are on Portworx Central version 2.6.x, you can directly upgrade to 2.8.x. Suppose, if you are on 2.4.x and you wish to upgrade to 2.8.x, you need to upgrade in phased manner. Firstly upgrade from version 2.4.x to 2.6.x, and then upgrade from version 2.6.x to 2.7.x.
You cannot directly upgrade from Portworx Central version 1.2.x to 2.8.0. To upgrade Portworx Central from versions 1.2.x to 2.8.0, you must:
- Upgrade from one of the Portworx Central versions 1.2.x to 2.6.x
- Then upgrade from version 2.6.x to 2.8.0
Prerequisites
Ensure a Portworx Central version 1.2.x is installed.
Upgrade
To upgrade the Portworx Central versions 1.2.x to 2.6.x:
-
Download the
migration.sh
file:curl https://raw.githubusercontent.com/portworx/helm/master/single_chart_migration/migration.sh -o migration.sh
-
Change the
migration.sh
file permissions to make it executable:chmod +x migration.sh
-
Update the Helm repository:
helm repo update
-
Search for the Portworx repository:
helm search repo portworx
-
Get the namespace where the Portworx Central components are installed:
helm ls -A | grep "px-backup-[0-9].[0-9].[0-9]" | awk '{print $2}'
-
Run the
migration.sh
file to upgrade to Portworx Central 2.6.x:./migration.sh --namespace <namespace> --helmrepo <helm repo name> --admin-password <current-admin-user-password> --upgrade-version 2.6.x
After upgrading from 1.2.x version to 2.6.x, upgrade to version 2.8.0 by following the steps in the Upgrade from 2.x.x to 2.8.0 procedure.
Upgrade in air-gapped environment
If you are in air-gapped environment, then follow the steps below to upgrade Portworx Central from the prior versions to 2.8.0:
-
Clone the Portworx helm repository:
git clone https://github.com/portworx/helm.git
-
Make the
migration.sh
an executable file:chmod +x /single_chart_migration/migration.sh
-
Get the namespace where the Portworx Central components are installed:
helm ls -A | grep "px-backup-[0-9].[0-9].[0-9]" | awk '{print $2}'
-
Modify the
px-central/values.yaml
file matching your internal registry, repository, and image pull secret parameters. Pass the modifiedvalues.yaml
file with the--helm-values-file
option. -
Run the
migration.sh
file to upgrade to Portworx Central 2.8.0:./migration.sh --namespace <namespace> --helmrepo <current-directory/charts> --admin-password <current-admin-user- password> --air-gapped --helm-values-file <values.yaml>