Kubernetes helm - Running helm install in a running pod

Viewed 3861

I want to spin up a single installer pod with helm install that once running, will apply some logic and install other applications into my cluster using helm install.

I'm aware of the helm dependencies, but I want to run some business logic with the installations and I'd rather do it in the installer pod and on the host triggering the whole installation process.

I found suggestions on using the Kubernetes REST API when inside a pod, but helm requires kubectl installed and configured.

Any ideas?

2 Answers
Related