-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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
move proxytransport config out of the genericapiserver #34973
move proxytransport config out of the genericapiserver #34973
Conversation
@@ -89,14 +85,6 @@ func TestNew(t *testing.T) { | |||
serviceReadWriteIP, _ := ipallocator.GetIndexedIP(serviceClusterIPRange, 1) | |||
assert.Equal(s.ServiceReadWriteIP, serviceReadWriteIP) | |||
assert.Equal(s.ExternalAddress, net.JoinHostPort(config.PublicAddress.String(), "6443")) | |||
|
|||
// These functions should point to the same memory location |
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.
Was there any value in these tests? They are gone now.
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.
Was there any value in these tests? They are gone now.
No. It was just wiring that was unused and no longer exists since we only care about the transport.
Only question about the destiny of the old test code. Otherwise, lgtm. |
d353b3d
to
4674cdb
Compare
4674cdb
to
02f3c66
Compare
02f3c66
to
9fe79b9
Compare
Jenkins unit/integration failed for commit 9fe79b90e781b8468987316d6e54457fd5679180. Full PR test history. The magic incantation to run this job again is |
Jenkins GCE e2e failed for commit 9fe79b90e781b8468987316d6e54457fd5679180. Full PR test history. The magic incantation to run this job again is |
9fe79b9
to
9578523
Compare
Jenkins GCI GKE smoke e2e failed for commit 9578523. Full PR test history. The magic incantation to run this job again is |
@k8s-bot test this [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue |
43 flakes later 👍 |
Proxy transport is not generic. This moves it to the master config where it is used.
This change is