本文介绍了如何通过SSH连接到Kubernetes节点或服务器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何通过SSH进入AWS托管的Kubernetes节点或服务器?我已经在AWS上托管了Kubernetes服务器和节点.我可以使用kubectl get node命令从本地笔记本电脑查看节点和服务器.
How to SSH into a Kubernetes Node or Server hosted on AWS?I have hosted a Kubernetes Server and Node on AWS. I'm able to see the nodes and server from my local laptop with the kubectl get node command.
我需要为我的节点创建一个持久卷,但是无法将其SSH入它.
I need to create a persistent volume for my node but I'm unable to ssh into it.
是否有任何特定的方法可以ssh进入节点或服务器?
Is there any specific way to ssh into the node or server?
推荐答案
尝试一下:ssh -i <path of the private key file> admin@<ip of the aws kube instances>
烫发文件应位于$ HOME/.ssh/kube_rsa
The perm file should be in $HOME/.ssh/kube_rsa
这篇关于如何通过SSH连接到Kubernetes节点或服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!