Releases: yuyicai/update-kube-cert
Releases · yuyicai/update-kube-cert
v2.1.0
v2.0.0
What's Changed
For New Clusters
Generate 100 year CA certificates before running kubeadm init
Just generate CA on the first control plane node (master0, which will run kubeadm init)
# master0
# 1. Generate 100 years CA certificates
bash update-kubeadm-cert.sh --action gen-ca
# 2. Initialize your cluster with kubeadm
# kubeadm will use the existing CA certificates generated by the script
kubeadm init [options]
# 3. Update all certificates to 100 years use extended expiration
bash update-kubeadm-cert.sh --cri containerd --days 36500
# 4. Join master1, master2 to the cluster and just run 'bash update-kubeadm-cert.sh --cri containerd --days 36500' on themv1.1.0: fix k8s v1.29 super_admin.conf
fix k8s v1.29 super_admin.conf #21 @Unknown256