猿问

如何捕获 oc 命令的输出 : oc get endpoints -n default -o

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


倚天杖
浏览 91回答 1
1回答

MMTTMM

您应该使用函数而不是:允许您检索与特定条件匹配的多个端点,允许您检索特定的端点(按名称)。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)如果希望命名空间中的所有终结点,则无需指定任何列表选项,并且可以传递空结构。
随时随地看视频慕课网APP

相关分类

Go
我要回答