mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-16 02:30:03 -03:30
Fixup kubelet.conf to point to kubelet-client-current.pem (#7347)
c9c0c01de0 only fix the problem for new clusters
Signed-off-by: Etienne Champetier <e.champetier@ateme.com>
This commit is contained in:
committed by
GitHub
parent
b07c5966a6
commit
14b63ede8c
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
- name: Fixup kubelet client cert rotation 1/2
|
||||||
|
lineinfile:
|
||||||
|
path: "{{ kube_config_dir }}/kubelet.conf"
|
||||||
|
regexp: '^ client-certificate-data: '
|
||||||
|
line: ' client-certificate: /var/lib/kubelet/pki/kubelet-client-current.pem'
|
||||||
|
backup: yes
|
||||||
|
notify:
|
||||||
|
- "Master | reload kubelet"
|
||||||
|
|
||||||
|
- name: Fixup kubelet client cert rotation 2/2
|
||||||
|
lineinfile:
|
||||||
|
path: "{{ kube_config_dir }}/kubelet.conf"
|
||||||
|
regexp: '^ client-key-data: '
|
||||||
|
line: ' client-key: /var/lib/kubelet/pki/kubelet-client-current.pem'
|
||||||
|
backup: yes
|
||||||
|
notify:
|
||||||
|
- "Master | reload kubelet"
|
||||||
@@ -62,3 +62,7 @@
|
|||||||
|
|
||||||
- name: Include kubeadm secondary server apiserver fixes
|
- name: Include kubeadm secondary server apiserver fixes
|
||||||
include_tasks: kubeadm-fix-apiserver.yml
|
include_tasks: kubeadm-fix-apiserver.yml
|
||||||
|
|
||||||
|
- name: Include kubelet client cert rotation fixes
|
||||||
|
include_tasks: kubelet-fix-client-cert-rotation.yml
|
||||||
|
when: kubelet_rotate_certificates
|
||||||
|
|||||||
Reference in New Issue
Block a user