Hey everyone. Trying to deploy one of our platform...
# general
b
Hey everyone. Trying to deploy one of our platforms described by a
Helm
chart into pulumi. We use the
aws-alb-ingress-controller
which means we have the following line in our ingress.
Copy code
paths:
          - path: /*
            backend:
              serviceName: ssl-redirect
              servicePort: use-annotation
This sets up automatic ssl forward at ALB level in AWS. However Pulumi doesn’t understand this third party rule and is not fully deploying showing:
Copy code
kubernetes:extensions:Ingress  core-django               creating...  No matching service found for ingress rule: "***-staging.***.com/*" -> "ssl-redirect"
c
cc @gorgeous-egg-16927 who is now the expert on
ingress
g
@best-tent-29186 Do you have a service called
ssl-redirect
, or is that a feature specific to that ingress controller?
b
feature specific to the controller @gorgeous-egg-16927
g
Do you happen to have a link to docs on that?
b
one sec ill grab it
g
Alright, thanks. It looks like I'll need to add some logic to handle that special case. I'll open an issue about that.
b
thankyou @gorgeous-egg-16927
👍 1
g
@best-tent-29186 there's a workaround in today's
0.20.2
release. you can add the
<http://pulumi.com/skipAwait|pulumi.com/skipAwait>: "true"
annotation to skip the await logic for this ingress resource until we develop a proper fix. thanks for your patience!
🤲 1