2024.04
On this page
This document covers the upgrade process from 2024.03 to 2024.04. It is safe to upgrade from 2024.01 directly to 2024.04.
We do not support upgrading directly to this version from prior to 2024.01.
Prerequisites
- Access to the helm chart version
2.2.0
. You may need tohelm repo update
to grab the latest. kubectl
andhelm
Guide
Before any upgrade takes place, ensure you have taken a snapshot or backup of all your running PVCs in your AKS cluster. This is very important as databases may be upgraded during this process.
- Connect to your cluster via the kubeconfig.
- Export your current running helm values file. Keep one for this process, and also keep one as a backup.
-
In the values file we’ll be working with, update the following properties:
global: image: tag: "2024.04.00" strategy: type: Recreate application: cluedin: components: packages: - name: CluedIn.EventHub version: 4.2.0 - name: CluedIn.Purview version: 4.2.0 submitter: resources: requests: cpu: 1000m memory: 1G limits: cpu: 1000m memory: 1G
-
Apply the values file from your shell by running the following:
# ${CustomValues} refers to the values file you have amended with the above changes. Please type the full path here. helm upgrade cluedin-platform -n cluedin cluedin/cluedin-platform \ --version 2.2.0 \ --reuse-values \ --values ${CustomValues} \ --wait \ --timeout 10m0s
After a few minutes, it should successfully complete.
If there are any issues during the upgrade process, please do not hesitate to reach out to CluedIn support.