i'm new to kubernetes i need to write a program that is listening to kubernetes change such as new pod creation or pod deletion. For these i've already the solution but i don't know how to listen for failing of pods, can someone help? I'm using the kubernetes java official client but i can also switch to another language to solve the problem, Thanks
Listening for pod fail in kubernetes java client?
1.4k Views Asked by pinotto At
2
There are 2 best solutions below
0

As previously mentioned by the user Ruben, we can implement a watch. To go even beyond, I have provided an example on how to run health checks too. The following block of code is merely the watch event with the pod status in the MODIFIED case.
try (Watch<V1Pod> watch = Watch.createWatch(
client,
coreV1Api.listNamespacedPodCall(namespace, null, null, null, null,
labels, null, null, null, null, Boolean.TRUE, null),
new TypeToken<Watch.Response<V1Pod>>() {
}.getType())) {
for (Watch.Response<V1Pod> eventPod : watch) {
V1Pod pod = eventPod.object;
switch (eventPod.type) {
case "ADDED":
System.out.println("Pod: " + pod.getMetadata().getName() + " ADDED\n");
break;
case "MODIFIED":
System.out.println("Pod: " + pod.getMetadata().getName() + " has been MODIFIED\n");
// Check to see the current status of the pod
if (!pod.getStatus().getPhase().equals("Running")){
System.out.println("Pod: " + pod.getMetadata.getName() + " is now " + pod.getStatus());
}
break;
case "DELETED":
System.out.println("Pod: " + pod.getMetadata().getName() + " has been DELETED\n");
default:
System.out.println("Unknown Event Occurred: " + eventPod.type + "\n");
}
}
} catch (Exception e) {
System.out.println("Error: " + e.getMessage());
}
Kubernetes defines the different statuses that you could implement as part of the health check condition.
You can check the pod status, here you have some examples into https://github.com/kubernetes-client/java
You can take this example to get the pod status:
Also you can watch: