Jak wyświetlić listę moich zadań K8s za pomocą złożonego LabelSelectora przez client-go?

Jan 28 2021

Chcę wyświetlić listę moich zadań k8s z selektorem etykiet przez client-go, jak to polecenie:

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

Przejrzałem kod źródłowy client-go, a następnie napisałem taki kod:

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

a potem wyskoczył mi błąd:

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

Gdzie popełniłem błąd? Jak wyświetlić listę moich ofert pracy za pomocą selektora etykiet, który jest złożonym wyrażeniem?

Odpowiedzi

3 Ullaakut Jan 28 2021 at 17:36

Korzystając z client-gobiblioteki Kubernetes , możesz po prostu napisać selektory etykiet w taki sam sposób, jak zrobiłbyś to z kubectl.

Pisanie hello-world in (London, China, NewYork)powinno działać dobrze.

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

Jeśli jednak chcesz dynamicznie generować hello-world in (London, China, NewYork)z obiektu programowego, to jest to kolejne pytanie, na które odpowiedź jest już tutaj w StackOverflow .