Reputation: 25964
In this doc they use u@node$
to define that the command is done from a node in a cluster. But how do you get to the node from kubectl?
It is well described how to get to a pod u@pod$
Upvotes: 1
Views: 4307
Reputation: 8776
On GKE you simply select your cluster and click on SSH button. If from the command line, then:
gcloud compute ssh NODE --zone ZONE
Upvotes: 3