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


Golang AttachRequest.GetContainerId方法代码示例

本文整理汇总了Golang中k8s/io/kubernetes/pkg/kubelet/api/v1alpha1/runtime.AttachRequest.GetContainerId方法的典型用法代码示例。如果您正苦于以下问题:Golang AttachRequest.GetContainerId方法的具体用法?Golang AttachRequest.GetContainerId怎么用?Golang AttachRequest.GetContainerId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在k8s/io/kubernetes/pkg/kubelet/api/v1alpha1/runtime.AttachRequest的用法示例。


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

示例1: Attach

// Attach prepares a streaming endpoint to attach to a running container, and returns the address.
func (ds *dockerService) Attach(req *runtimeapi.AttachRequest) (*runtimeapi.AttachResponse, error) {
	if ds.streamingServer == nil {
		return nil, streaming.ErrorStreamingDisabled("attach")
	}
	_, err := checkContainerStatus(ds.client, req.GetContainerId())
	if err != nil {
		return nil, err
	}
	return ds.streamingServer.GetAttach(req)
}
开发者ID:alex-mohr,项目名称:kubernetes,代码行数:11,代码来源:docker_streaming.go

示例2: GetAttach

func (s *server) GetAttach(req *runtimeapi.AttachRequest) (*runtimeapi.AttachResponse, error) {
	url := s.buildURL("attach", req.GetContainerId(), streamOpts{
		stdin:  req.GetStdin(),
		stdout: true,
		stderr: !req.GetTty(), // For TTY connections, both stderr is combined with stdout.
		tty:    req.GetTty(),
	})
	return &runtimeapi.AttachResponse{
		Url: &url,
	}, nil
}
开发者ID:alex-mohr,项目名称:kubernetes,代码行数:11,代码来源:server.go

示例3: Attach

// Attach prepares a streaming endpoint to attach to a running container, and returns the address.
func (r *RemoteRuntimeService) Attach(req *runtimeApi.AttachRequest) (*runtimeApi.AttachResponse, error) {
	ctx, cancel := getContextWithTimeout(r.timeout)
	defer cancel()

	resp, err := r.runtimeClient.Attach(ctx, req)
	if err != nil {
		glog.Errorf("Attach %s from runtime service failed: %v", req.GetContainerId(), err)
		return nil, err
	}

	return resp, nil
}
开发者ID:eljefedelrodeodeljefe,项目名称:kubernetes,代码行数:13,代码来源:remote_runtime.go

示例4: GetAttach

func (s *server) GetAttach(req *runtimeapi.AttachRequest) (*runtimeapi.AttachResponse, error) {
	if req.GetContainerId() == "" {
		return nil, grpc.Errorf(codes.InvalidArgument, "missing required container_id")
	}
	token, err := s.cache.Insert(req)
	if err != nil {
		return nil, err
	}
	return &runtimeapi.AttachResponse{
		Url: s.buildURL("attach", token),
	}, nil
}
开发者ID:kubernetes,项目名称:kubernetes,代码行数:12,代码来源:server.go

示例5: Attach

func (r *FakeRuntime) Attach(req *runtimeApi.AttachRequest) (*runtimeApi.AttachResponse, error) {
	url := "http://" + FakeStreamingHost + ":" + FakeStreamingPort + "/attach/" + req.GetContainerId()
	return &runtimeApi.AttachResponse{
		Url: &url,
	}, nil
}
开发者ID:eljefedelrodeodeljefe,项目名称:kubernetes,代码行数:6,代码来源:fake-app-interface.go


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