当前位置: 首页>>代码示例>>Golang>>正文


Golang node.ResourceLocation函数代码示例

本文整理汇总了Golang中k8s/io/kubernetes/pkg/registry/node.ResourceLocation函数的典型用法代码示例。如果您正苦于以下问题:Golang ResourceLocation函数的具体用法?Golang ResourceLocation怎么用?Golang ResourceLocation使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了ResourceLocation函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: Connect

// Connect returns a handler for the node proxy
func (r *ProxyREST) Connect(ctx api.Context, id string, opts runtime.Object, responder rest.Responder) (http.Handler, error) {
	proxyOpts, ok := opts.(*api.NodeProxyOptions)
	if !ok {
		return nil, fmt.Errorf("Invalid options object: %#v", opts)
	}
	location, transport, err := node.ResourceLocation(r.Store, r.Connection, r.ProxyTransport, ctx, id)
	if err != nil {
		return nil, err
	}
	location.Path = path.Join(location.Path, proxyOpts.Path)
	// Return a proxy handler that uses the desired transport, wrapped with additional proxy handling (to get URL rewriting, X-Forwarded-* headers, etc)
	return newThrottledUpgradeAwareProxyHandler(location, transport, true, false, responder), nil
}
开发者ID:40a,项目名称:bootkube,代码行数:14,代码来源:proxy.go

示例2: ResourceLocation

// ResourceLocation returns a URL to which one can send traffic for the specified node.
func (r *REST) ResourceLocation(ctx api.Context, id string) (*url.URL, http.RoundTripper, error) {
	return node.ResourceLocation(r, r.connection, r.proxyTransport, ctx, id)
}
开发者ID:robbfoster-taulia,项目名称:kubernetes,代码行数:4,代码来源:etcd.go


注:本文中的k8s/io/kubernetes/pkg/registry/node.ResourceLocation函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。