Closed
Description
list calls do not set the kind of api version of the items:
# works
In [14]: client.list_service_for_all_namespaces().kind
Out[14]: 'ServiceList'
# works
In [18]: client.read_namespaced_service(namespace=namespace, name=name).kind
Out[18]: 'Service'
# wrong
In [16]: type(client.list_service_for_all_namespaces().items[0].kind)
Out[16]: NoneType
I suspect this might be caused by #744 but I am not sure how the de-serialization exactly works.