Upgrade Nected Version
This guide explains how to upgrade your self-hosted Nected instance to a newer version using Helm. The upgrade process applies to any Kubernetes-based deployment and ensures that your services, configuration, and data remain intact during the version transition.
Before proceeding, ensure that you have:
Backed up your
nected-values.yamlfile.Verified that all services are healthy using
kubectl get pods.Taken a backup of your PostgreSQL and Redis databases if upgrading across major versions.
Step 1: Update the Latest Helm Chart
To make sure you're using the latest Helm chart for Nected:
helm repo update nectedStep 2: Review the Change Log
Before upgrading, review the Nected Release Notes to:
Identify new configuration keys
Check for breaking changes
Note any deprecations or removals
Update your values files accordingly.
Step 3: Apply the Upgrade
To upgrade the Nected core application, run:
helm upgrade nected nected/nected -f values/nected-values.yamlThis command will pull the latest Helm charts and apply them to your running cluster while preserving your configuration.
Step 4: Verify the Upgrade
After the upgrade completes:
Run
kubectl get podsto ensure all pods are inRunningorCompletedstate.Visit your UI domain (e.g.,
https://app.yourdomain.com) and verify the platform is accessible.Optionally, inspect logs to validate post-upgrade stability:
kubectl logs -l app=nected-nalanda
kubectl logs -l app=nected-vidhaan-routerRollback (if needed)
If an issue occurs after upgrading, you can roll back to the previous stable release:
helm rollback nected <REVISION_NUMBER>Use helm history <release-name> to list past revisions:
helm history nectedNeed Help?
If you encounter issues or have upgrade-specific questions, contact the Nected team at [email protected].
Last updated