Versions Compared

Key

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

...

Expand

Below is the explanation of the above command:

1. helm install

  • The install subcommand tells Helm to install a Helm chart in the Kubernetes cluster.

2. ac5tmt

  • This is the release name. Helm uses this name to manage the deployment. It acts as an identifier for the installed chart, allowing you to update, manage, or uninstall the release later.

3. adeptia/

  • Refers to the Helm chart being installed.

  • adeptia/ indicates that Helm will look for the chart named adeptia either in the local chart repository or in the configured Helm repositories.

4. --timeout 10m

  • Sets a timeout of 10 minutes for the installation process.

  • If the deployment takes longer than 10 minutes, Helm will terminate the process and report a failure.

5. --debug

  • Enables debug mode, providing detailed logs and additional information during the installation process. Useful for troubleshooting if the deployment encounters issues.

6. -n ac5tmt

  • Specifies the namespace where the release should be installed (ac5tmt).

  • Kubernetes namespaces allow you to organize resources logically within a cluster.

While installing you can see the status and watchlist (Needs to update your own namespace) This needs to be opened in a separate command prompt and executed.

Run the below command to see the live status of the installation:

...