kubernetes dashboard 搭建参考
Kubernetes Dashboard安装过程中会出现的问题包括: 1、证书失效问题 2、token获取问题 3、服务如何暴露的问题 按照本文的步骤,可保你安装一路平安 一、生成证书 生成证书通过openssl生成自签名证书即可,不再赘述,参考如下所示: [root@master keys]# pwd /root/keys [root@master keys]# ls [root@master keys]# openssl genrsa -out dashboard.key 2048 Generating RSA private key, 2048 bit long modulus .+++ .................................................+++ e is 65537 (0x10001) [root@master keys]# openssl req -new -out dashboard.csr -key dashboard.key -subj '/CN=192.168.246.200' [root@master keys]# ls dashboard.csr dashboard.key [root@master keys]# [root@master keys]# openssl x509 -req -in dashboard