forked from kubernetes-sigs/kubespray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto renew control plane certificates (kubernetes-sigs#7358)
While at it remove force_certificate_regeneration This boolean only forced the renewal of the apiserver certs Either manually use k8s-certs-renew.sh or set auto_renew_certificates Signed-off-by: Etienne Champetier <[email protected]>
- Loading branch information
1 parent
8ff43bc
commit 51ca7d3
Showing
8 changed files
with
73 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
roles/kubernetes/control-plane/templates/k8s-certs-renew.service.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[Unit] | ||
Description=Renew K8S control plane certificates | ||
|
||
[Service] | ||
Type=oneshot | ||
ExecStart={{ bin_dir }}/k8s-certs-renew.sh |
23 changes: 23 additions & 0 deletions
23
roles/kubernetes/control-plane/templates/k8s-certs-renew.sh.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
|
||
echo "## Expiration before renewal ##" | ||
{{ bin_dir }}/kubeadm certs check-expiration | ||
|
||
echo "## Renewing certificates managed by kubeadm ##" | ||
{{ bin_dir }}/kubeadm certs renew all | ||
|
||
echo "## Restarting control plane pods managed by kubeadm ##" | ||
{% if container_manager == "docker" %} | ||
{{ docker_bin_dir }}/docker ps -af 'name=k8s_POD_(kube-apiserver|kube-controller-manager|kube-scheduler|etcd)-*' -q | /usr/bin/xargs {{ docker_bin_dir }}/docker rm -f" | ||
{% else %} | ||
{{ bin_dir }}/crictl pods --namespace kube-system --name 'kube-scheduler-*|kube-controller-manager-*|kube-apiserver-*|etcd-*' -q | /usr/bin/xargs {{ bin_dir }}/crictl rmp -f | ||
{% endif %} | ||
echo "## Updating /root/.kube/config ##" | ||
/usr/bin/cp {{ kube_config_dir }}/admin.conf /root/.kube/config | ||
|
||
echo "## Waiting for apiserver to be up again ##" | ||
until printf "" 2>>/dev/null >>/dev/tcp/127.0.0.1/6443; do sleep 1; done | ||
|
||
echo "## Expiration after renewal ##" | ||
{{ bin_dir }}/kubeadm certs check-expiration |
9 changes: 9 additions & 0 deletions
9
roles/kubernetes/control-plane/templates/k8s-certs-renew.timer.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[Unit] | ||
Description=Timer to renew K8S control plane certificates | ||
|
||
[Timer] | ||
# First Monday of each month | ||
OnCalendar=Mon *-*-1..7 03:{{ groups['kube-master'].index(inventory_hostname) }}0:00 | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters