You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The result we have seen in our systems is this that the requestURI being sent to the kubernetes API is /apis//ingresses which results in a 404. This basically tanks kube-ingress-aws-controller from the beginning.
The text was updated successfully, but these errors were encountered:
jhuntwork
added a commit
to jhuntwork/kube-ingress-aws-controller
that referenced
this issue
Feb 1, 2024
Fixeszalando-incubator#678
With the removal of the `--ingress-api-version` flag in 0.15.0, this
value was no longer set and the constructed api URL is incomplete.
Signed-off-by: Jeremy Huntwork <[email protected]>
With #515 the
ingressAPIVersion
variable is no longer set, because the cli flag was removed which specified a default. This means that when an adapter is created here: https://github.com/zalando-incubator/kube-ingress-aws-controller/blob/master/controller.go#L377 then it is being passed an empty value.The result we have seen in our systems is this that the requestURI being sent to the kubernetes API is
/apis//ingresses
which results in a 404. This basically tanks kube-ingress-aws-controller from the beginning.The text was updated successfully, but these errors were encountered: