Performing the upgrade using HELM charts
Typical upgrade steps
A lot of the upgrade steps can be performed without impact on your users. Basically, the deployment or upgrade of components is split in two actions:
- 
Configuration changes, such as added or changed configuration parameters, including the new component’s version 
- 
Deployment of the upgraded component, using the helm upgradecommand.
Performing the upgrade using HELM charts
Step 1 - Upgrade Axual Platform to 0.12.1
- 
Update the Axual helm repository to download the latest charts available helm repo update
- 
Upgrade Axual Platform helm upgrade --install platform axual-stable/platform --version=0.12.1 -n kafka
This command will restart the all axual-platform pods.
Verify the upgrade by checking the pods and their images:
- 
[clusterShortName]-clusterbrowsepod uses image:docker.axual.io/axual/cluster-browse:1.5.0
- 
[clusterShortName]-clusterapipod uses image:docker.axual.io/axual/clusterapi:2.2.5
- 
[tenantShortName]-[instanceShortName]-instance-apipod uses image:docker.axual.io/axual/instance-application:3.6.0
- 
[tenantShortName]-[instanceShortName]-rest-proxypod uses image:docker.axual.io/axual/rest-proxy:1.5.2
- 
selfservice-streambrowsepod uses image:docker.axual.io/axual/stream-browse:1.4.0
- 
selfservice-uipod uses image:docker.axual.io/axual/axual-frontend:6.7.0
- 
selfservice-apipod uses image:docker.axual.io/axual-api:6.16.0
- 
selfservice-metricsexposerpod uses image:docker.axual.io/metricsexposer:0.8.0
- 
selfservice-keycloakpod uses image:docker.axual.io/axual/axual-keycloak:19.0.2
Once restarted, verify everything is running fine before moving to next step.
Step 2 - Change SchemaRegistry URL in the Self-Service
After confirming that Cluster-Browse and Stream-Browse have been successfully updated,
you can change the Schema Registry Url configured for your Instances in the Self-Service.
- 
Log in the Self-Service as a Tenant Admin 
- 
Edit your instance
- 
Change the Schema Registry URLvalue to be the[tenantShortName]-[instanceShortName]-schema-registry-slaveservice-name
- 
Save your instance
- 
You are now able to Stream Browse messages using the HTTPS protocol 
Step 3 - Upgrade Axual Operator to 0.8.1
- 
Update the Axual helm repository to download the latest charts available helm repo update
- 
Upgrade Axual Operator helm upgrade --install strimzi --set watchAnyNamespace=true axual-stable/axual-operator --version=0.8.1 -n kafka
This command will restart the strimzi-cluster-operator, zookeeper and kafka pods.
Verify the upgrade by checking the pods and their images:
- 
strimzi-cluster-operatorpod uses image:docker.axual.io/axual/strimzi/operator:0.31.1
- 
zookeeperpod uses image:docker.axual.io/axual/strimzi/kafka:0.31.1-kafka-3.2.0
- 
kafkapod uses image:docker.axual.io/axual/strimzi/kafka:0.31.1-kafka-3.2.0
Once restarted, verify everything is running fine before moving to next step.
Step 4 - Upgrade Kafka to 3.2.3
After Axual Operator has been upgraded, Kafka can be upgraded to the latest version supported by Axual: 3.2.3.
- 
Modify the Kafka version in your values.yamlfileExample: platform: core: kafka: kafka: version: 3.2.3
- 
Upgrade Axual platform using the above modified values.yaml.helm upgrade --install platform axual-stable/platform -f values.yaml --version=0.12.1 -n kafka
Verify the upgrade by checking the pods and their images:
- 
zookeeperpod uses image:docker.axual.io/axual/strimzi/kafka:0.31.1-kafka-3.2.3
- 
kafkapod uses image:docker.axual.io/axual/strimzi/kafka:0.31.1-kafka-3.2.3
Once restarted, verify everything is running fine.
Step 5 - Running Preview Alongside Regular UI (Optional)
In the below steps, we are going to set keycloak and helm chart to support the new UI.
Step 5a - Enabling Preview UI
A Preview UI is available to see exciting upcoming changes and features in the UI. The Preview UI is available alongside the regular UI.
- 
Login to keycloak master realm. 
- 
Switch to the realm associated with the Tenant. 
- 
Goto Clients
- 
Create a new client with the name self-service-preview.
- 
Copy client settings for self-service
- 
Change the Valid Redirect URLsto the preview url. Save the changes. This completes the Keycloak configuration.
- 
Configure the preview UI ingress with below configuration in mgmt/preview-uisub-chart.global: previewui: enabled: true mgmt: previewUiUrl: 'preview-ui-url' preview-ui: ingress: enabled: true host: "dns-of-preview-url" annotations: nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" nginx.ingress.kubernetes.io/force-ssl-redirect: "true" className: nginx targetPortName: https secretName: "secret-containing-tls-certs"
Step 5b - Set previewUiUrl in Helm Chart
To show a link to the preview UI add the previewUiUrl with below configuration in mgmt sub-chart.
global:
  mgmt:
    previewUiUrl: 'preview-ui-url'| The Preview URL is available on a different DNS which must be configured to point to the Ingress IP or automatically via External DNS. Keycloak must also be configured | 
That’s it!
No other steps are required to upgrade or configure the platform components. You can read through the release blog to find out what has changed since the last release and forward it to your colleagues.