showjason
showjason
Is this pod created by Custom Resource, `www.dmlhgrdtdhzerjqa.com` this condition type is customized?
@DanArlowski, you can describe this pod or get the pod's yaml template by `kubectl` to get more detailed info. Especially focus on `Condition` and `ownerReference`
/assign Hi @milanaleksic I think this is cause by `Configuration` instance reinitialization. Hi @roycaihw I would like to assign this issue. However, I am not very familiar this project. Please...
Hi @roycaihw , do you know what does [local_vars_configuration](https://github.com/kubernetes-client/python/blob/master/kubernetes/client/models/v1_config_map.py#:~:text=None%2C%20metadata%3DNone%2C-,local_vars_configuration,-%3DNone) mean? `local_vars_configuration` is a parameter in every model object, but it does not be passed into [klass instance](https://github.com/kubernetes-client/python/blob/38ba743227524798d6cd58baddb3a6454207451f/kubernetes/client/api_client.py#L632-L641) when func `__deserialize_model`...
Hi @ckkz-it , please try this script and it's working in my cluster. ``` from kubernetes import client, config def main(): config.load_kube_config() net_api = client.NetworkingV1Api() print(net_api.list_namespaced_ingress("default")) if __name__ == "__main__":...
This issue is similar to #1735. The workaround is adding all of the customized pod status like `InPlaceUpdateReady` into [allowed_values](https://github.com/kubernetes-client/python/blob/6c90fe3182adc0f3e1a351a0993d3159322b2c80/kubernetes/client/models/v1_pod_readiness_gate.py#L76)
Hi @frenkdefrog , I don't think this is a bug, this feature `AvailableReplicas` is supported in native kubernetes since version 1.22, you can find it from [here](https://github.com/kubernetes/kubernetes/blob/21c2cf52069eb9d5e2a2e996b20957510b428c86/pkg/apis/apps/types.go#L211). Since your kubernetes...
Hi @atulGupta2922 , please follow this [comment](https://github.com/kubernetes-client/python/pull/1717#issuecomment-1057060674) to debug your issue, to check if kubernetes responded with `available_replicas `. BTW, I do not find kubernetes-client version 22.0.4, can you check...
/assign Hi @ptsp01, please try this command `kubectl get jobs -n prefect test -ojson`, usually, it will show `failed: 1` like below