Comment déboguer un pod spécifique lorsque le contrôleur de réplication fait l'équilibrage des charges

kunectl label pod <pod-id> type-

# This will remove the label from the pod and Replication controller will
# stop redirecting traffic to this pod.
# now you can start using this pod for debug purpose. 
Dr. iterations