--- - name: Init cluster shell: kubeadm init --pod-network-cidr=10.10.0.0/16 --ignore-preflight-errors=all - name: Get kube-router get_url: url: https://raw.githubusercontent.com/cloudnativelabs/kube-router/master/daemonset/kubeadm-kuberouter-all-features.yaml dest: /tmp/kubeadm-kuberouter-all-features.yaml - name: Install python yum: name: - python3 - python3-pip state: present - name: Install kubernetes python package pip: name: - kubernetes==11.0 - openshift - name: Apply Kube-router k8s: state: present kubeconfig: /etc/kubernetes/admin.conf src: /tmp/kubeadm-kuberouter-all-features.yaml - name: Get join token command: kubeadm token create --print-join-command register: found_join_token retries: 30 delay: 5 until: found_join_token.rc == 0 become: true - name: Save join token set_fact: k8s_join_token: "{{ found_join_token.stdout }}"