openshift-online / maestro

Maestro Service Repo
Apache License 2.0
9 stars 17 forks source link

support listing works with its labels #135

Closed skeeey closed 3 months ago

skeeey commented 3 months ago

should wait for #133 and #136 is merged

machi1990 commented 3 months ago

lgtm

Once merged, I can test it against the client I am building.

clyang82 commented 3 months ago

/ok-to-test

machi1990 commented 3 months ago

lgtm

Once merged, I can test it against the client I am building.

Just an FYI; I've tested the PR with a code similar to this


l := &corev1.NamespaceList{}

err = client.List(ctx, l, k8sClient.MatchingLabels(map[string]string{
"key": "label",
}))

and works as expected. Thanks @skeeey @clyang82 @qiujian16