-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Not All Annotation work in Ingress #10719
Comments
This issue is currently awaiting triage. If Ingress contributors determines this is a relevant issue, they will accept it by applying the The Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Duplicate of #10682 @fovea-group when new issue button is clicked, the template of a new issue asks many questions. You have not answered any of those questions in this issue and not answered any questions in the other issue #10682 . Please close one issue as they are duplicates and please answer the questions asked in the new issue template /remove-kind bug |
Ok...can you explain me in this issue "#10682" what questions not have a answer? I thinked that response all question. So, i will open new right issue |
But there is no information on SNI for the second host name you used and so on |
The cert in the secret on Kubernetes does not know have this hostname In any case this is a duplicate of #10682 so closing /close |
@longwuyuan: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Ok, so i write simply yaml:
This YAML create deployment, service, SECRET WITH CN = certificate and ingress for host "certificate". Ok, now add in your host file "127.0.0.1 certificate" and with postman make GET to "https://certificate:443".
This call work and CERTIFICATE IS RIGHT:
Now change ingress YAML with this (change hostname), and add in your host file "127.0.0.1 certificate-cn-different" and with postman make GET to "https://certificate-cn-different:443":
This call work but CERTIFICATE IS DEFAULT (ok this is expected behaviour. Ingress make check on CN but is not correct for new hostname so return default certificate):
NOW MY PROBLEM
My Scenario is that i want disabled check on certificate in nginx ingress. I want make this by nginx annotation.
So...change YAML with this (i try some annotation but nothing work):
My expectation was that my last request worked and return self-signed certificate. But not work and return always default kubernetes certificate.
SEEMS THAT ANNOTATION NOT CHANGE NGINX.CONF FILE TO DISABLE CN CHECK
WHY???
The text was updated successfully, but these errors were encountered: