我嘗試使用客戶端集。CoreV1().終結(jié)點(diǎn)(命名空間)。獲?。ㄉ舷挛摹ODO(),名稱字符串 ,metav1.GetOptions{})endpoints, err2 := clientset.CoreV1().Endpoints(namespace2).Get(context.TODO(), namespace2, metav1.GetOptions{}) if err2 != nil { log.Println(err2.Error()) } fmt.Printf("GetPodList There are %v endpoints in the cluster\n", (endpoints))但我不確定為名稱字符串(第二個(gè)參數(shù))和metav1給出的參數(shù)。GetOptions{}.(第三個(gè)參數(shù))
1 回答

MMTTMM
TA貢獻(xiàn)1869條經(jīng)驗(yàn) 獲得超4個(gè)贊
您應(yīng)該使用函數(shù)而不是:允許您檢索與特定條件匹配的多個(gè)端點(diǎn),允許您檢索特定的端點(diǎn)(按名稱)。ListGetListGet
因此:
endpoints, err := clientset.CoreV1().Endpoints(namespace2).List(context.TODO(), metav1.ListOptions{})
// ...
fmt.Printf("GetPodList there are %v endpoints in the cluster\n", len(endpoints.Items)
如果希望命名空間中的所有終結(jié)點(diǎn),則無(wú)需指定任何列表選項(xiàng),并且可以傳遞空結(jié)構(gòu)。
- 1 回答
- 0 關(guān)注
- 111 瀏覽
添加回答
舉報(bào)
0/150
提交
取消