mirror of
https://github.com/outbackdingo/kubernetes.git
synced 2026-02-12 05:50:26 +00:00
Automatic merge from submit-queue make spdy.roundtripper usable with UpgradeAwareProxyHandler the `spdy.RoundTripper` was incompatible for use on `https` connections by the `UpgradeAwareProxyHandler` because it couldn't find the TLS config. This check would get `nil` https://github.com/kubernetes/kubernetes/blob/master/pkg/util/proxy/dial.go#L48 because it didn't recognize the type which would result in failures later on. That would cause a failure that ripples out to here: https://github.com/kubernetes/kubernetes/blob/master/pkg/registry/generic/rest/proxy.go#L151 and prevents the proxy from working.