Upgrading Dash Enterprise

Your organization is responsible for performing Dash Enterprise upgrades. We’ll notify you when a new version is available.

To ensure you remain eligible for support, upgrade Dash Enterprise regularly. We recommend keeping your instance as close to the latest version as possible for best results.

Contact us for upgrade help.

Checking the Current Version

helm ls --all-namespaces

Next to the namespace for the Dash Enterprise instance whose version you want to check, look at the CHART or APP VERSION.

Before Upgrading

Before upgrading Dash Enterprise, we strongly recommend carefully reading the changelog for the version that you want to upgrade to, as well as any intermediate versions.

Follow one or many of the upgrade procedures below corresponding to your current and target versions.

6.1.X to 6.2.2

Prerequisites

Upgrade Notices

Make sure you’re aware of the following when passing through the intermediate versions below:

Running the Upgrade

To upgrade Dash Enterprise from 6.1.X to 6.2.2:

  1. Authenticate to the Replicated registry if you aren’t already:
    sh echo $LICENSE_ID | helm registry login registry.replicated.com \ --username "$EMAIL" \ --password-stdin

  2. Use one of the following commands:

6.0.X to 6.1.0

Prerequisites

Upgrade Notices

Running the Upgrade

To upgrade Dash Enterprise from 6.0.X to 6.1.0:

  1. Authenticate to the Replicated registry if you aren’t already:
    sh echo $LICENSE_ID | helm registry login registry.replicated.com \ --username "$EMAIL" \ --password-stdin

  2. If you are affected by the auth.keycloak.internalCaSecretName deprecation, create a ConfigMap for your self-signed or internal CA certificate:
    sh CA_CONFIGMAP_NAME=keycloak-ca-cert kubectl create configmap $CA_CONFIGMAP_NAME \ --namespace=$NAMESPACE \ --from-file="$KEYCLOAK_CA_CERT" \ --dry-run=client -o yaml | kubectl apply -f -

  3. Run one of the following commands:
    * If you are not affected by the auth.keycloak.internalCaSecretName deprecation:
    sh helm upgrade $RELEASE_NAME \ $CHART_REGISTRY/$RELEASE_CHANNEL/dash-enterprise \ --version "$CHART_VERSION" \ --namespace $NAMESPACE \ --reset-then-reuse-values
    (the --reset-then-reuse-values flag applies all configuration settings that you applied during the original installation and that are not modified in this command).