mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 15:25:57 +00:00
Merge pull request #19912 from caesarxuchao/nit-fix-for-client-gen
Auto commit by PR queue bot
This commit is contained in:
commit
81cbdc75bc
@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package fake
|
||||||
|
|
||||||
|
import (
|
||||||
|
"k8s.io/kubernetes/pkg/client/testing/core"
|
||||||
|
client "k8s.io/kubernetes/pkg/client/unversioned"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (c *FakeServices) ProxyGet(scheme, name, port, path string, params map[string]string) client.ResponseWrapper {
|
||||||
|
return c.Fake.InvokesProxy(core.NewProxyGetAction("services", c.ns, scheme, name, port, path, params))
|
||||||
|
}
|
@ -36,6 +36,4 @@ type ResourceQuotaExpansion interface{}
|
|||||||
|
|
||||||
type SecretExpansion interface{}
|
type SecretExpansion interface{}
|
||||||
|
|
||||||
type ServiceExpansion interface{}
|
|
||||||
|
|
||||||
type ServiceAccountExpansion interface{}
|
type ServiceAccountExpansion interface{}
|
||||||
|
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package unversioned
|
||||||
|
|
||||||
|
import (
|
||||||
|
"k8s.io/kubernetes/pkg/client/unversioned"
|
||||||
|
"k8s.io/kubernetes/pkg/util/net"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ServiceExpansion interface {
|
||||||
|
ProxyGet(scheme, name, port, path string, params map[string]string) unversioned.ResponseWrapper
|
||||||
|
}
|
||||||
|
|
||||||
|
// ProxyGet returns a response of the service by calling it through the proxy.
|
||||||
|
func (c *services) ProxyGet(scheme, name, port, path string, params map[string]string) unversioned.ResponseWrapper {
|
||||||
|
request := c.client.Get().
|
||||||
|
Prefix("proxy").
|
||||||
|
Namespace(c.ns).
|
||||||
|
Resource("services").
|
||||||
|
Name(net.JoinSchemeNamePort(scheme, name, port)).
|
||||||
|
Suffix(path)
|
||||||
|
for k, v := range params {
|
||||||
|
request = request.Param(k, v)
|
||||||
|
}
|
||||||
|
return request
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user