You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, currently we use the return error of bind method to determine bind successful or not,
err :=client.ClientSet().CoreV1().Pods(binding.Namespace).Bind(ctx, binding, metav1.CreateOptions{})
if err != nil {
//bind pod to node failed
}
// bind pod to node success
I wonder if there exists the situation that bind method returns some errors like network time out, while
in the k8s side, the pod binds to the node successfully?
The text was updated successfully, but these errors were encountered:
zj619
changed the title
client-go bind method reliable
client-go bind method reliable?
Oct 24, 2024
Hello, currently we use the return error of bind method to determine bind successful or not,
I wonder if there exists the situation that bind method returns some errors like network time out, while
in the k8s side, the pod binds to the node successfully?
The text was updated successfully, but these errors were encountered: