2

我正在尝试label selectors通过Kubernetes Python Client获得服务。我正在使用list_service_for_all_namespaces方法来检索服务,并使用以下field_selector参数对其进行过滤:

...
field_selector="spec.selector={u'app': 'redis'}
...
services = v1.list_service_for_all_namespaces(field_selector=field_selector, watch=False)
for service in services.items:
    print(service)
...

我收到此错误:

HTTP response body: {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"\"spec.selector\" is not a known field selector: only \"metadata.name\", \"metadata.namespace\"","reason":"BadRequest","code":400}

因此,似乎只有namenamespace是有效参数,没有记录:

field_selector = 'field_selector_example' # str | 通过字段限制返回对象列表的选择器。默认为一切。(可选的)

现在我的解决方法是为服务设置与标签选择器相同的标签,然后通过参数检索它,但我希望能够通过.label_selectorlabel selectors

问题是从一开始我就需要获取服务背后的端点(后端 pod),但是 API 调用甚至没有返回此信息,所以我虽然会得到选择器,但将它们与 pod 上的标签进行匹配,然后我们开始了,但现在我意识到选择器也无法获得。

这限制太多了。我在想可能是我的方法是错误的。有谁知道label selectors从服务中获取的方法?

4

1 回答 1

4

您应该能够从服务对象中获取选择器,然后使用它来查找与选择器匹配的所有 pod。

例如(我希望我没有拼写错误,而且我的 python 生锈了):

services = v1.list_service_for_all_namespaces(watch=False)
for svc in services.items:
    if svc.spec.selector:
        # convert the selector dictionary into a string selector
        # for example: {"app":"redis"} => "app=redis"
        selector = ''
        for k,v in svc.spec.selector.items():
            selector += k + '=' + v + ','
        selector = selector[:-1]

        # Get the pods that match the selector
        pods = v1.list_pod_for_all_namespaces(label_selector=selector)
        for pod in pods.items:
            print(pod.metadata.name)
于 2018-06-28T01:09:23.693 回答