How to expose helm to kubernetes deployment which is with golang application

9/10/2019

I am writing a Golang application which is more like automating the helm install, so I would like to know how to expose helm to your Kubernetes deployment or any API that creates helm object which can communicate with the tiller directly for the instruction, please describe the answer with a piece of code. thanks

I have been trying with the package https://godoc.org/k8s.io/helm/pkg/helm but does not really know what are the parameters that we need to pass when creating helm client

-- Vishi
kubernetes-helm

1 Answer

9/10/2019

Not to discourage you, but I thought I should point out that Helm is nearing a v3 release, which will entirely remove tiller, and hence the client will likely change also.

Here are some relevant links:

Hope this helps.

-- cewood
Source: StackOverflow