This message was deleted.
# general
s
This message was deleted.
b
does the
ingress-nginx
chart have helm hooks that create those jobs?
how are you configuring the chart?
o
I’m using Python:
Copy code
ingress_nginx_yaml = helm.Chart('ingress-nginx-yaml',
    config=helm.ChartOpts(
        chart='ingress-nginx',
        version='3.22.0',
        namespace='ingress-nginx',
        fetch_opts=helm.FetchOpts(
            repo='<https://kubernetes.github.io/ingress-nginx>'),
        values={
            'tcp': {
                '22': 'default/gitserver:22' }} ))
For reference: you can find the source of the chart here.
Yeah, the chart seems to use helm hooks
Ah, I see that Pulumi doesn’t support Helm hooks. Didn’t even know what they were before you mentioned it @billowy-army-68599. Thanks for bringing it up, I’ll have to work out another solution then 🙂
b
what's the difference between
ingress-nginx
and
nginx-ingress
? 😄
the latter is known to work, I use it daily
o
Ah, thanks for the heads up. I believe that the main difference is that
ingress-nginx
is maintained by
kubernetes
and
nginx-ingress
is maintained by
nginx
. If you’re interested in more details you can take a look here. I’ll have another look myself.