Hi All,
I am trying to use tiller.install_release to automate helm install charts. but somehow chart shows deployed. but there are no deployments available. my test app deployment is having one pod and two container inside that pod. below is the code i am using.
src = "/opt/testapp"
chart = ChartBuilder({'name': 'testApp', 'source': {'type': 'directory', 'location': src}})
tiller.install_release( chart.get_helm_chart(),
dry_run=False,
namespace='default',
name='testApp')
above code is only creating the namespace and config map service.
but the same chart location if i use with command line "helm install -n testApp /opt/testapp" deployment get successful and pod is deployed and running.
can you please help what is the issue here in my code, why "tiller.install_release" is not working as expected?
Hi All,
I am trying to use tiller.install_release to automate helm install charts. but somehow chart shows deployed. but there are no deployments available. my test app deployment is having one pod and two container inside that pod. below is the code i am using.
src = "/opt/testapp"
chart = ChartBuilder({'name': 'testApp', 'source': {'type': 'directory', 'location': src}})
tiller.install_release( chart.get_helm_chart(),
dry_run=False,
namespace='default',
name='testApp')
above code is only creating the namespace and config map service.
but the same chart location if i use with command line "helm install -n testApp /opt/testapp" deployment get successful and pod is deployed and running.
can you please help what is the issue here in my code, why "tiller.install_release" is not working as expected?