-
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
Attempt to fix our probes with mTLS enabled. #4017
Attempt to fix our probes with mTLS enabled. #4017
Conversation
Currently, we check for the kubelet's user-agent to attempt to distinguish between proper requests and probes, however, with Istio mTLS enabled they rewrite probes, but they do not spoof the Kubelet's User-Agent. This leads to all manner of failure modes (see linked issue for one, another is likely that the probe traffic will prevent scaling to zero). To combat this, in the places we currently key off of the User-Agent we will now be sensitive to a header, which we will explicitly pass in our Activator probes, and rewrite user probes to provide. Fixes: knative#3751
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mattmoor 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 |
The following is the coverage report on pkg/.
|
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.
/lgtm
Currently, we check for the kubelet's user-agent to attempt to distinguish
between proper requests and probes, however, with Istio mTLS enabled they
rewrite probes, but they do not spoof the Kubelet's User-Agent. This leads
to all manner of failure modes (see linked issue for one, another is likely
that the probe traffic will prevent scaling to zero).
To combat this, in the places we currently key off of the User-Agent we will
now be sensitive to a header, which we will explicitly pass in our Activator
probes, and rewrite user probes to provide.
Fixes: #3751
This is WIP mainly because I'd like some form of confirmation that it works before we let it in.