So debuggen Sie einen bestimmten Pod, wenn der Replikationscontroller einen Lastausgleich durchführt
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