0

I trying to install helm charts on microk8s using python client using pyhelm

tiller.install_release(chart.get_helm_chart(), dry_run=False, namespace='default')

It seems tiller is not available on microk8s helm3.

sdk
  • 11
  • 1
  • 3
  • tiller was removed in helm3 and pyhelm does not work with helm3 yet https://github.com/flaper87/pyhelm/issues/84 – edbighead Jun 10 '20 at 13:54

1 Answers1

1

pyhelm doesn't have support for helm3, as edbighead mentioned, but if you're still looking for a pythonic solution to deploying helm charts, I just released an open source package called avionix that may be suited to your needs. The package was also designed with helm3 in mind, which doesn't have a tiller (part of the reason pyhelm doesn't work on helm3). You can check it out here or you can install it from pypi

pip install avionix
vesii
  • 2,760
  • 4
  • 25
  • 71
Zach Brookler
  • 334
  • 3
  • 7