千家信息网

jenkins连接Kubernetes的方法

发表于:2024-11-30 作者:千家信息网编辑
千家信息网最后更新 2024年11月30日,使用证书连接:通过 ~/.kube/config 生成 cert.pfx,jenkins通过 cert.pfx来连接k8s0、生成ca.crtecho '' "| base64 -d > ~/ca.c
千家信息网最后更新 2024年11月30日jenkins连接Kubernetes的方法

使用证书连接:
通过 ~/.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文件

0