當前位置: 首頁>>代碼示例>>Golang>>正文


Golang PodInfoGetter.GetPodInfo方法代碼示例

本文整理匯總了Golang中github.com/GoogleCloudPlatform/kubernetes/pkg/client.PodInfoGetter.GetPodInfo方法的典型用法代碼示例。如果您正苦於以下問題:Golang PodInfoGetter.GetPodInfo方法的具體用法?Golang PodInfoGetter.GetPodInfo怎麽用?Golang PodInfoGetter.GetPodInfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/GoogleCloudPlatform/kubernetes/pkg/client.PodInfoGetter的用法示例。


在下文中一共展示了PodInfoGetter.GetPodInfo方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: GetPodInfo

func (fakePodInfoGetter) GetPodInfo(host, podID string) (api.PodInfo, error) {
	// This is a horrible hack to get around the fact that we can't provide
	// different port numbers per kubelet...
	var c client.PodInfoGetter
	switch host {
	case "localhost":
		c = &client.HTTPPodInfoGetter{
			Client: http.DefaultClient,
			Port:   10250,
		}
	case "machine":
		c = &client.HTTPPodInfoGetter{
			Client: http.DefaultClient,
			Port:   10251,
		}
	default:
		glog.Fatalf("Can't get info for: %v, %v", host, podID)
	}
	return c.GetPodInfo("localhost", podID)
}
開發者ID:kleopatra999,項目名稱:kubernetes,代碼行數:20,代碼來源:integration.go

示例2: GetPodInfo

func (fakeKubeletClient) GetPodInfo(host, podNamespace, podID string) (api.PodContainerInfo, error) {
	glog.V(3).Infof("Trying to get container info for %v/%v/%v", host, podNamespace, podID)
	// This is a horrible hack to get around the fact that we can't provide
	// different port numbers per kubelet...
	var c client.PodInfoGetter
	switch host {
	case "localhost":
		c = &client.HTTPKubeletClient{
			Client: http.DefaultClient,
			Port:   10250,
		}
	case "machine":
		c = &client.HTTPKubeletClient{
			Client: http.DefaultClient,
			Port:   10251,
		}
	default:
		glog.Fatalf("Can't get info for: '%v', '%v - %v'", host, podNamespace, podID)
	}
	return c.GetPodInfo("localhost", podNamespace, podID)
}
開發者ID:ukai,項目名稱:kubernetes-0,代碼行數:21,代碼來源:integration.go


注:本文中的github.com/GoogleCloudPlatform/kubernetes/pkg/client.PodInfoGetter.GetPodInfo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。