Is there any example that integrates with helm ?
+1 for Helm, currently the local development process with minikube and Helm is a laborious process. Tilt integration would be great.
We've seen people use the helm template command to give Tilt their k8s configs. The Tiltfile looks something like this:
k8s_yaml(local("helm template path/to/chart"))
But I like your idea of adding an example & tutorial on how to do this! Or maybe some syntactic sugar for this pattern.
Does that work for you in the meantime, or did you have other integration ideas in mind?
Works for me!!
A native helm integration would be awesome. Good job. This project rocks.
But for now the above "helper" command works for me as well. :-)
Problem is of course tilt down does not work well and no resource observation which is sad.
Also, some people use https://github.com/roboll/helmfile for deploying everything with helm.
It's something you should keep in mind.
Most helpful comment
Hey all,
The v0.5.0 release contains a built-in
helmcommand that does exactly what @nicks' snippet does. It also has API docs. Here's a quick example of its use in a TiltfileLet me know if you have any questions! I'm going to close this issue in the meantime.