Comment lister mes jobs k8s avec un LabelSelector complexe par client-go?

Jan 28 2021

Je veux lister mes travaux k8s avec un sélecteur d'étiquettes par client-go comme cette commande:

$ kubectl get jobs -l 'hello-world in (London, China, NewYork)'

J'ai parcouru le code source de client-go, puis j'ai écrit un code comme celui-ci:

func listJobs(cli *kubernetes.Clientset) (*batchv1.JobList, error) {
    label := metav1.LabelSelector{
        MatchExpressions: []metav1.LabelSelectorRequirement{
            {
                Key:      "hello-world",
                Operator: metav1.LabelSelectorOpIn,
                Values: []string{
                    "London",
                    "China",
                    "NewYork",
                },
            },
        },
    }

    fmt.Println(label.String())

    return cli.BatchV1().Jobs("default").List(context.TODO(), metav1.ListOptions{
        LabelSelector: label.String(),
    })
}

et puis j'ai eu l'erreur:

&LabelSelector{MatchLabels:map[string]string{},MatchExpressions:[]LabelSelectorRequirement{LabelSelectorRequirement{Key:hello-world,Operator:In,Values:[London China NewYork],},},}
2021/01/28 17:58:07 unable to parse requirement: invalid label key "&LabelSelector{MatchLabels:map[string]string{}": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]')

Où est-ce que je me suis trompé? Comment répertorier mes travaux avec un sélecteur d'étiquettes qui est une expression complexe?

Réponses

3 Ullaakut Jan 28 2021 at 17:36

En utilisant la client-gobibliothèque Kubernetes , vous pouvez simplement écrire des sélecteurs d'étiquettes de la même manière que vous le feriez avec kubectl.

L'écriture hello-world in (London, China, NewYork)devrait fonctionner très bien.

func listJobs(cli *kubernetes.Clientset) (*batchv1.JobList, error) {
    return cli.BatchV1().Jobs("default").List(context.TODO(), metav1.ListOptions{
        LabelSelector: "hello-world in (London, China, NewYork)",
    })
}

hello-world in (London, China, NewYork)Cependant, si vous voulez générer dynamiquement à partir d'un objet programmatique, c'est une autre question, qui est déjà répondue sur StackOverflow ici .