配置創建證書
Certificate Authority
cat > ca-config.json <<EOF
{
"signing": {
"default": {
"expiry": "8760h"
},
"profiles": {
"kubernetes": {
"usages": ["signing", "key encipherment", "server auth", "client auth"],
"expiry": "8760h"
}
}
}
}
EOFclient 與 server 憑證
Admin 客戶端憑證
Kubelet 客戶端憑證
Kube-controller-manager 客戶端憑證
Kube-proxy 客戶端憑證
kube-scheduler 證書
Kubernetes API Server 證書
Service Account 證書
分發客戶端和服務器證書
Last updated