我尝试使用客户端集。CoreV1().终结点(命名空间)。获取(上下文。TODO(),名称字符串 ,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))但我不确定为名称字符串(第二个参数)和metav1给出的参数。GetOptions{}.(第三个参数)
1 回答
MMTTMM
TA贡献1869条经验 获得超4个赞
您应该使用函数而不是:允许您检索与特定条件匹配的多个端点,允许您检索特定的端点(按名称)。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)
如果希望命名空间中的所有终结点,则无需指定任何列表选项,并且可以传递空结构。
- 1 回答
- 0 关注
- 90 浏览
添加回答
举报
0/150
提交
取消