C/C++教程

利用kops在AWS创建cluster时指定key pair name

本文主要是介绍利用kops在AWS创建cluster时指定key pair name,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

最近接手运维一个Web Service的小项目,该项目中使用到了kops在AWS上创建cluster。

作为kops新手,之前完全没有接触过kops,这里记录下使用kops创建cluster的时候配置AWS的key pair的相关内容,高手请略过。

利用kops在AWS上创建cluster的时候,可以配置cluster来指定现有的key pair,否则会创建新的key pair,而对应pem文件由于没办法下载而导致无法远程登录创建的实例。

可以参考kops的github上的讨论:

https://github.com/kubernetes/kops/issues/4728

具体的:

Next edit cluster and add sshKeyName: aws-sandpit under .spec section, where aws-sandpit is an already existing EC2 SSH Key Pair. 即在.spec中添加配置sshKeyName项,其值为你现有的key pair名称。
这篇关于利用kops在AWS创建cluster时指定key pair name的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!