Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Follow the steps in this KB article for connecting to public or private GKE cluster.

  2. Install kubectl and configure kubectl command line access using steps 1 and 2 in “Getting thread dump” section in the same article.

  3. See names of all pods and find the one(s) you want to restart, run:

    Code Block
    kubectl get pods
  4. To restart the pod from the command line:

Code Block
kubectl delete pod <name-of-pod-from-previous-step>

...