我尝试使用客户端集。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{}.(第三个参数)
MMTTMM
相关分类