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:

  1. Ensure your Helm repository is updated to fetch the latest version of the Redpanda Helm chart:

    helm repo update
  2. Upgrade your existing deployment using the helm upgrade command:

    helm upgrade redpanda-connect redpanda/connect --namespace <namespace> --values <your-values-file>

    Replace <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>

To find the revision number, use the helm history command:

helm history redpanda-connect --namespace <namespace>

This command lists previous deployments and their revision numbers.

See also: