クライアントごとに複雑なLabelSelectorを使用してk8sジョブを一覧表示するにはどうすればよいですか?
クライアントごとにラベルセレクターを使用してk8sジョブを一覧表示したい-次のコマンドのように実行します。
$ kubectl get jobs -l 'hello-world in (London, China, NewYork)'
client-goのソースコードを調べてから、次のようなコードを作成しました。
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(),
})
}
そして、私はエラーが発生しました:
&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]')
どこで私は間違えましたか?複雑な式であるラベルセレクターを使用してジョブを一覧表示するにはどうすればよいですか?
回答
3 Ullaakut
Kubernetesclient-go
ライブラリを使用すると、と同じ方法でラベルセレクタを簡単に記述できますkubectl
。
書くことhello-world in (London, China, NewYork)
はうまくいくはずです。
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)
ただし、プログラマティックオブジェクトから動的に生成する必要がある場合、それは別の質問です。これは、ここのStackOverflowですでに回答されています。