Upgrade

To upgrade to a higher version of Adeptia Connect, you need to do the following in the same order.

  1. Update the Helm repository.  
  2. Upgrade to the next version

Updating the Helm Repository

Before you start to move to next version, make sure that you have updated the Helm Repository. 

To update the Helm Repository, run the following command on the Helm CLI.

helm repo update

Upgrading to the higher version

After you've updated the Helm Repository, run the following command on the Helm CLI.

helm upgrade -i adeptia-connect adeptia/ -f adeptia/values.yaml -n < NAMESPACE >

where,

  • adeptia-connect is the name you want to give to your deployment.
  • adeptia/ is path of the application within the adeptia repository.
As there is a single application within the adeptia repository, the path will remain as adeptia/.
  • -f denotes file.
  • adeptia/values.yaml is the location of your values.yaml file.
  • -n denotes namespace.
  • <NAMESPACE> is the namespace the application will belong to in the Kubernetes Cluster.