sparse-intern-71089
04/29/2020, 3:15 PMbetter-rainbow-14549
04/29/2020, 3:59 PMbland-lamp-16797
04/29/2020, 4:09 PMhelm install
I'm not managing to convert this to pythonbetter-rainbow-14549
04/29/2020, 4:10 PMbetter-rainbow-14549
04/29/2020, 4:10 PMbetter-rainbow-14549
04/29/2020, 4:10 PMbillowy-army-68599
bland-lamp-16797
04/29/2020, 4:14 PMtransformations
and how to convert it to python...better-rainbow-14549
04/29/2020, 4:14 PMbetter-rainbow-14549
04/29/2020, 4:15 PMbillowy-army-68599
values.yaml
. I use them often for things like charts that don't support podsecurity policiesbland-lamp-16797
04/29/2020, 4:42 PMimport pulumi_kubernetes
pulumi_kubernetes.helm.v3.Chart('nginx', config={}
has error
AttributeError: module 'pulumi_kubernetes' has no attribute 'helm
but according to the docs it has
https://www.pulumi.com/docs/reference/pkg/python/pulumi_kubernetes/helm/v3/bland-lamp-16797
04/29/2020, 4:42 PMbland-lamp-16797
04/29/2020, 5:04 PMfrom pulumi_kubernetes.helm import v3
and even after this it's not that easy as in TS 😞
I probably miss examples how to use helm in pythonbillowy-army-68599
bland-lamp-16797
04/29/2020, 7:29 PMbland-lamp-16797
04/30/2020, 11:59 AMnginx = Chart('nginx', config=ChartOpts(
repo='stable',
chart='nginx-ingress',
version='0.30.0',
namespace=b81_namespace.metadata['name']
), opts=ResourceOptions(provider=k8s_provider))
in case you'll need it...bland-lamp-16797
04/30/2020, 12:30 PMhelm list
does not see it anymore but I can leave without itbland-lamp-16797
04/30/2020, 12:43 PMDeployment
so pulumi tries to apply it each time when i run pulumi up
... hmmmbland-lamp-16797
04/30/2020, 2:35 PMhelm list
should not work anyway because it's managed by pulumi (althought it would be cool if to use help list)
Another thing that I've learn is that I must have helm on my machine + configured helm repo add stable <https://kubernetes-charts.storage.googleapis.com>