vivekdixit2510

Results 3 comments of vivekdixit2510

The watch method fails to detect changes despite pod termination, persisting in an unresponsive state. w = watch.Watch() for event in w.stream( kube_client.list_namespaced_pod, namespace=environ.get('NAMESPACE')): pod = event['object']

I need to watch a POD lifecycle process for 6 hours and delete it after. If it ends early, I should capture the EVENT it as successful. But sometimes, I...