How to execute a Helm chart using any API

1/16/2022

We are trying to make a single click deployment of an application using helm chart on one cluster from remote but we are not getting any any suitable way for this, We have tried with Pyhelm also but it dosnot support latest helm. Could anyone have already came across this scenario.

We do have the application helm chart in one of our cluster and we want to execute that helm chart for that we are looking for API.

-- Mrityunjay Biswas
helm3
kubernetes
kubernetes-helm
python

1 Answer

1/16/2022

ArgoCD may be what you're looking for:

Their UI is pretty efficient, includes with multi-cluster management options, external directory integration, ...

While if you're looking for an API: ArgoCD uses Kubernetes CRD, allowing you to describe your application deployments as "Applications", or "ApplicationSets". Your application could integrate with some Kubernetes cluster API, configuring ArgoCD and tracking its applications.

-- SYN
Source: StackOverflow