Upgrade Redpanda Connect using the Helm Chart
To benefit from Redpanda Connect’s new features and enhancements, upgrade to use the latest version of the Redpanda Helm chart.
Upgrade Redpanda Connect
To upgrade Redpanda Connect to a newer Helm chart version:
-
Ensure your Helm repository is updated to fetch the latest version of the Redpanda Helm chart:
helm repo update
bash -
Upgrade your existing deployment using the
helm upgrade
command:helm upgrade redpanda-connect redpanda/connect --namespace <namespace> --values <your-values-file>
bashReplace
<your-values-file>
with the path to your custom configuration file.
Roll back an upgrade
If an upgrade introduces issues, you can roll back to a previous release. Helm retains previous deployments, allowing you to roll back with the helm rollback
command:
helm rollback redpanda-connect <revision-number> --namespace <namespace>
bash
To find the revision number, use the helm history
command:
helm history redpanda-connect --namespace <namespace>
bash
This command lists previous deployments and their revision numbers.
See also:
Was this helpful?