为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

Go
倚天杖 2022-08-30 15:21:41
我尝试使用客户端集。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)

如果希望命名空间中的所有终结点,则无需指定任何列表选项,并且可以传递空结构。


查看完整回答
反对 回复 2022-08-30
  • 1 回答
  • 0 关注
  • 90 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信