Come elencare i miei lavori k8s con un LabelSelector complesso da client-go?

Jan 28 2021

Voglio elencare i miei lavori k8s con un selettore di etichette da client-go come questo comando:

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

Ho esaminato il codice sorgente di client-go, quindi ho scritto un codice come questo:

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(),
    })
}

e poi ho ricevuto l'errore:

&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]')

Dove ho sbagliato? Come faccio a elencare i miei lavori con un selettore di etichette che è un'espressione complessa?

Risposte

3 Ullaakut Jan 28 2021 at 17:36

Utilizzando la client-golibreria Kubernetes , puoi semplicemente scrivere selettori di etichette nello stesso modo in cui faresti con kubectl.

La scrittura hello-world in (London, China, NewYork)dovrebbe funzionare bene.

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)",
    })
}

Se quello che vuoi è generare dinamicamente hello-world in (London, China, NewYork)da un oggetto programmatico, tuttavia, questa è un'altra domanda, a cui è già stata data risposta su StackOverflow qui .