jenkins 连接k8s

使用证书连接:
通过 ~/.kube/config 生成 cert.pfx,jenkins通过 cert.pfx来连接k8s
0、生成ca.crt
echo ‘‘ "| base64 -d > ~/ca.crt (~/.kube/config中certificate-authority-data的内容)
1、生成client.key
echo ‘‘ "| base64 -d > ~/client.key (~/.kube/config中client-key-data的内容)
2、生成client.crt
echo ‘‘ "| base64 -d > ~/client.crt (~/.kube/config中client-certificate-data的内容)
3、生成cert.pfx
openssl pkcs12 -export -inkey client.key -in client.crt -certfile ca.crt -out cert.pfx
4、jenkins 上传pkcs12文件
jenkins 连接k8s

相关推荐