-
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
Removing secure-verify-ca-secret support #4695
Removing secure-verify-ca-secret support #4695
Conversation
…that annotation is used in an Ingress definition
Hi @janosi. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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. |
@@ -104,7 +104,7 @@ func TestAnnotations(t *testing.T) { | |||
"default/secure-verify-ca": {}, | |||
}, | |||
}).Parse(ing) | |||
if err != nil { | |||
if err == nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be an error here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is right. Fixing.
/assign @ElvinEfendi |
@janosi please don't assign PRs manually |
/ok-to-test |
Codecov Report
@@ Coverage Diff @@
## master #4695 +/- ##
=========================================
Coverage ? 58.62%
=========================================
Files ? 88
Lines ? 6743
Branches ? 0
=========================================
Hits ? 3953
Misses ? 2353
Partials ? 437
Continue to review full report at Codecov.
|
Sure. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aledbf, janosi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What this PR does / why we need it: The annotation
secure-verify-ca-cert
is not supported anymore and ignored silently currently. This PR is to remove the relevant code and the relevant parts from the documentation. There is a new error log if the annotation is present in an Ingress definition. Later this log should be removed, too, but currently it serves as a note to the users who currently uses this annotation in their Ingresses.Which issue this PR fixes: This PR is due to issue #4503 , but the actual fix for the problem of that isse will be handled by issue 4688. I.e. this PR should not close any issues.
Special notes for your reviewer: