-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The spec for Ingress resource is incorrect #2066
Comments
In v2.2.0, If Did you encounter any issues with the provided manifest? |
@kishorj - You are correct. Copy/Paste error from my last test. This is the error you are referring too? {"level":"error","ts":1623347854.85268,"logger":"controller","msg":"Reconciler error","controller":"ingress","name":"ingress-2048","namespace":"game-2048","error":"ingress: game-2048/ingress-2048: prefix path shouldn't contain wildcards: /*"} I did have to specify a
This is the correct spec that tested successfully. spec:
rules:
- http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: service-2048
port:
number: 80 |
i think we should revert this PR: #2040
|
@M00nF1sh To confirm, what is the fix for this? Having path
|
Had the same problem. Seems that changing pathType will allow wildcards in hosts: |
Hi, someone could solve the issue with /* ? |
no |
This works well and made my As is listed in the Ingress Examples, this is the correct pattern for "match everything". Only problem is that it's a breaking change that requires the new aws controller version already. |
The manifest for
apiVersion: networking.k8s.io/v1
has the incorrect specs.aws-load-balancer-controller/docs/examples/2048/2048_full.yaml
Lines 52 to 59 in 3a6ba6a
The spec should conform to the spec referenced here:
https://kubernetes.io/docs/concepts/services-networking/ingress/#the-ingress-resource
The text was updated successfully, but these errors were encountered: