Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You can install Adeptia Connect microservices using Helm Charts. A Helm Chart is a collection of files and templates that describe Kubernetes resources governing the deployment of microservices.

...

Enabling OCI support in the Helm 3 client

Helm 3 supports Open Container Initiative (OCI) for package distribution. Set the HELM_EXPERIMENTAL_OCI in the environment to enable OCI support in the Helm 3 client by running the following command on the Helm CLI.

Code Block
languagecss
themeMidnight
export HELM_EXPERIMENTAL_OCI=1

...

Code Block
languagecss
themeMidnight
helm install <Name of the release> <Name of the repository> -f <Path of the values.yaml file> -n <Namespace>

For example,

helm install adeptia adeptia-connect adeptia -f /home/ec2-user/values.yaml -n devspace

Where,

  • adeptia-connect is the name you want to give to your release.
  • adeptia is path of the application within the adeptia repository.
  • -f denotes file.
  • /home/ec2-user/values.yaml is the path of the values.yaml file.
  • -n denotes Kubernetes namespace.
  • devspace is the Kubernetes Namespace.

This command deploys Adeptia Connect on the Kubernetes cluster in with the default configuration.

...

Uninstalling Adeptia Connect

If you wish to uninstall the application, run the below command.

Code Block
languagecss
themeMidnight
helm uninstall <adeptia-connect>

...

Info
If you've configured external Secrets, you need to manually delete the Secrets and its pod after you uninstall the application.