如何使用客户端go库列出与持久卷声明相关联的Pod



使用下面的客户端go调用列出特定命名空间中的PVC。

x, err := clientset.CoreV1().PersistentVolumeClaims("namespace_name").List(context.TODO(), metav1.ListOptions{})

我们如何获得与PVC相关的Pods列表?

我们似乎需要使用循环和过滤-类似于GitHub:上的问题

不,循环和过滤是使用特定PVC 定位吊舱的唯一方法

通过特定命名空间中的pod的简单代码,用PVC将pod保存到新列表中并打印:

// Set namespace
var namespace = "default"
// Get pods list
podList, _ := clientset.CoreV1().Pods(namespace).List(context.TODO(), metav1.ListOptions{})
// Create new pod list
podsWithPVC := &corev1.PodList{}
// Filter pods to check if PVC exists, if yes append to the list
for _, pod := range podList.Items {
for _, volume := range pod.Spec.Volumes {
if volume.PersistentVolumeClaim != nil {
podsWithPVC.Items = append(podsWithPVC.Items, pod)
fmt.Println("Pod Name: " + pod.GetName())
fmt.Println("PVC Name: " + volume.PersistentVolumeClaim.ClaimName)
}
}
}

完整代码(基于此代码(:

package main
import (
"context"
"flag"
"fmt"
"path/filepath"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/homedir"
)
func main() {
var kubeconfig *string
if home := homedir.HomeDir(); home != "" {
kubeconfig = flag.String("kubeconfig", filepath.Join(home, ".kube", "config"), "(optional) absolute path to the kubeconfig file")
} else {
kubeconfig = flag.String("kubeconfig", "", "absolute path to the kubeconfig file")
}
flag.Parse()
config, err := clientcmd.BuildConfigFromFlags("", *kubeconfig)
if err != nil {
panic(err)
}
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
panic(err)
}
// Set namespace
var namespace = "default"
// Get pods list
podList, _ := clientset.CoreV1().Pods(namespace).List(context.TODO(), metav1.ListOptions{})
// Create new pod list
podsWithPVC := &corev1.PodList{}
// Filter pods to check if PVC exists, if yes append to the list
for _, pod := range podList.Items {
for _, volume := range pod.Spec.Volumes {
if volume.PersistentVolumeClaim != nil {
podsWithPVC.Items = append(podsWithPVC.Items, pod)
fmt.Println("Pod Name: " + pod.GetName())
fmt.Println("PVC Name: " + volume.PersistentVolumeClaim.ClaimName)
}
}
}
}

最新更新