现在我在命令的帮助下将 Pod 作为 Kubernetes 结构
pods , err := clientset.CoreV1().Pods("namespace_String").List(context.TODO(), metav1.ListOptions{})
现在我把它作为单独的 yaml 文件获取 我应该使用哪个命令
for i , pod := range pods.Items{
if i==0{
t := reflect.TypeOF(&pod)
for j := 0; j<t.NumMethod(); j++{
m := t.Method(j)
fmt.Println(m.Name)
}
}
}
此函数将打印我应该使用的 pod 项目中的函数列表
谢谢你的回答
哆啦的时光机
湖上湖
相关分类