-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Call MarkTLSNotEnabled for private cluster-local service #8043
Call MarkTLSNotEnabled for private cluster-local service #8043
Conversation
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.
@nak3: 0 warnings.
In response to this:
Proposed Changes
#7163 propagates the status from KCert to Route when autoTLS is
enabled, but it introduced an issue.When
serving.knative.dev/visibility: cluster-local
is configured,
KCert is not created and Route's cert status is not updated (=becomes
Unknwon
status.)To fix it, this patch calls
MarkTLSNotEnabled
when the service is
cluster-local./lint
Release Note
NONE
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.
/test pull-knative-serving-https I hope this fixes broken https test grid https://testgrid.knative.dev/serving#https |
/retest Only |
The following jobs failed:
Automatically retrying due to test flakiness... |
@nak3 I think we may want to differentiate the below two cases and have different messages in Route status:
WDYT? |
@ZhiminXiang Yes, that makes sense. We should have the different messages. Updated now. /test pull-knative-serving-https |
The following is the coverage report on the affected files.
|
/lgtm I think we may want to check in this PR after the release cut. |
/unhold release is cut. |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: nak3, tcnghia, ZhiminXiang 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 |
Proposed Changes
#7163 propagates the status from KCert to Route when autoTLS is
enabled, but it introduced an issue.
When
serving.knative.dev/visibility: cluster-local
is configured,KCert is not created and Route's cert status is not updated (=becomes
Unknwon
status.)To fix it, this patch calls
MarkTLSNotEnabled
when the service iscluster-local.
/lint
Release Note