简体   繁体   中英

How to list Pods based on Labels in kubernetes go-client

I have tried to list pods based on labels

    // Kubernetes client - package kubernetes
    clientset := kubernetes.NewForConfigOrDie(config)

    // create a temp list for storage 
    var podslice []string

    // Get pods -- package metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    pods, _ := clientset.CoreV1().Pods("").List(metav1.ListOptions{})
    for _, p := range pods.Items {
        fmt.Println(p.GetName())
    }

this is equivalent of

kubectl get po 

is there a way to get in golang

kubectl get po -l app=foo

thanks in advance

You may just be able to set using the ListOptions parameter.

Untested code:

import "k8s.io/apimachinery/pkg/labels"

labelSelector := metav1.LabelSelector{MatchLabels: map[string]string{"app": "foo}}
listOptions := metav1.ListOptions{
    LabelSelector: labels.Set(labelSelector.MatchLabels).String(),
}
pods, _ := clientset.CoreV1().Pods("").List(listOptions)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM