How to ssh into the nodes of a cluster container core of a Google container?

how ssh to google cluster container cluster nodes? When I try to use ssh for node using my ip address, it says that the public key is denied.

Can someone help me how to get the key to connect to the nodes of the google container cluster?

+4
source share
1 answer

You should use the gcloud tool, for example:

gcloud compute ssh <NODE_NAME> --zone <ZONE>
+6
source

Source: https://habr.com/ru/post/1680404/


All Articles