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.
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.
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