Haowei Cai (Roy)

Results 219 comments of Haowei Cai (Roy)

This is still a bug and needs to be fixed in the upstream generator: https://github.com/OpenAPITools/openapi-generator/issues/10391 /lifecycle frozen

> kubernetes==9.0.0 Please also try the latest versions: https://pypi.org/project/kubernetes/#history

It looks like you've been commenting on this PR already. Would you mind doing a first round of review? @ecerulm

The json parsing is done by https://github.com/kubernetes-client/python/blob/ccd3ce4fc27ed202864f9b3f971744a5ebf6ad7e/kubernetes/client/api_client.py#L242 Essentially what it does is ``` data = '{"example":"json", "with":null, "and":true}' data = json.loads(data) data = str(data) ``` and the result becomes a...

kubectl supports listing across all the namespaces but I'm not sure if it's implemented client-side or server-side. Could you check what API kubectl calls by running `kubectl list {custom_resource} -A...