How's everyone deploying ingress like `ingress-ngi...
# kubernetes
f
How's everyone deploying ingress like
ingress-nginx
? I'd prefer not to rely on helm, as it adds another layer of complexity that I'm trying to avoid, but using
kube2pulumi
on ingress backend yml feels fairly clunky.
b
Helm worked fine for me when using
ingress-nginx
. You're absolutely correct that using kube2pulumi is not easy to read. If you're using AWS I think you can set up an elastic load balancer to do the work for you
c
I initially stayed away from Helm as well and just used the yaml file with transformations. But it became painful so I decided to go with Helm. The Pulumi API with Helm isn't too bad actually, and Pulumi applies the helm resources as just kubernetes resources so you don't really need to know anything about Helm works
💯 1