Update 'k8s/initialize.yml'

This commit is contained in:
2024-05-04 12:38:51 +00:00
parent 50a496e9ce
commit f56e23b95c

View File

@@ -1,10 +1,14 @@
---
- name: Initialize the controlplane
hosts: masters
hosts: root_master
become: yes
become_method: sudo
become_user: root
tasks:
- name: Reboot machine to finaliza presetup
reboot:
reboot_timeout: 3600
- name: Initialize the control plane
shell: kubeadm init --pod-network-cidr={{ POD_NETWORK_CIDR }} --control-plane-endpoint "{{ APISERVER_VIP}}:{{ APISERVER_PORT }}" --upload-certs >> /etc/kubernetes/setup.out
args: chdir $HOME
creates: /etc/kubernetes/setup.out
# - name: Reboot machine to finaliza presetup
# reboot:
# reboot_timeout: 3600