1
0
mirror of https://github.com/geerlingguy/ansible-role-kubernetes.git synced 2025-03-24 00:21:06 +01:00

stop kubelet

This commit is contained in:
rbaxende 2024-03-07 10:03:59 -05:00
parent 961ed87fca
commit d09d554f18

View File

@ -23,10 +23,10 @@
- include_tasks: kubelet-setup.yml # deprecated
when: kubernetes_kubelet_extra_args|length > 0
- name: Ensure kubelet is started and enabled at boot.
- name: Ensure kubelet is stopped, but enabled at boot.
service:
name: kubelet
state: started
state: stopped
enabled: true
- name: Check if Kubernetes has already been initialized.