Skip to content
Snippets Groups Projects
Unverified Commit a42d8114 authored by Samuel Liu's avatar Samuel Liu Committed by GitHub
Browse files

fix scale playbook (#6482)

parent bf6fdce3
No related branches found
No related tags found
No related merge requests found
...@@ -3,13 +3,13 @@ ...@@ -3,13 +3,13 @@
command: /bin/true command: /bin/true
notify: notify:
- Kubeadm | reload systemd - Kubeadm | reload systemd
- Kubeadm | reload kubelet - Kubeadm | restart kubelet
- name: Kubeadm | reload systemd - name: Kubeadm | reload systemd
systemd: systemd:
daemon_reload: true daemon_reload: true
- name: Kubeadm | reload kubelet - name: Kubeadm | restart kubelet
service: service:
name: kubelet name: kubelet
state: restarted state: restarted
...@@ -46,13 +46,14 @@ ...@@ -46,13 +46,14 @@
- name: Download images to ansible host cache via first kube-master node - name: Download images to ansible host cache via first kube-master node
hosts: kube-master[0] hosts: kube-master[0]
gather_facts: False
any_errors_fatal: "{{ any_errors_fatal | default(true) }}" any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles: roles:
- { role: kubespray-defaults, when: "not skip_downloads and download_run_once and not download_localhost" } - { role: kubespray-defaults, when: "not skip_downloads and download_run_once and not download_localhost" }
- { role: kubernetes/preinstall, tags: preinstall, when: "not skip_downloads and download_run_once and not download_localhost" } - { role: kubernetes/preinstall, tags: preinstall, when: "not skip_downloads and download_run_once and not download_localhost" }
- { role: download, tags: download, when: "not skip_downloads and download_run_once and not download_localhost" } - { role: download, tags: download, when: "not skip_downloads and download_run_once and not download_localhost" }
- name: Target only workers to get kubelet installed and checking in on any new nodes - name: Target only workers to get kubelet installed and checking in on any new nodes(engine)
hosts: kube-node hosts: kube-node
gather_facts: False gather_facts: False
any_errors_fatal: "{{ any_errors_fatal | default(true) }}" any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
...@@ -62,7 +63,23 @@ ...@@ -62,7 +63,23 @@
- { role: container-engine, tags: "container-engine", when: deploy_container_engine|default(true) } - { role: container-engine, tags: "container-engine", when: deploy_container_engine|default(true) }
- { role: download, tags: download, when: "not skip_downloads" } - { role: download, tags: download, when: "not skip_downloads" }
- { role: etcd, tags: etcd, etcd_cluster_setup: false, when: "not etcd_kubeadm_enabled|default(false)" } - { role: etcd, tags: etcd, etcd_cluster_setup: false, when: "not etcd_kubeadm_enabled|default(false)" }
environment: "{{ proxy_env }}"
- name: Target only workers to get kubelet installed and checking in on any new nodes(node)
hosts: kube-node
gather_facts: False
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults }
- { role: kubernetes/node, tags: node } - { role: kubernetes/node, tags: node }
environment: "{{ proxy_env }}"
- name: Target only workers to get kubelet installed and checking in on any new nodes(network)
hosts: kube-node
gather_facts: False
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
roles:
- { role: kubespray-defaults }
- { role: kubernetes/kubeadm, tags: kubeadm } - { role: kubernetes/kubeadm, tags: kubeadm }
- { role: network_plugin, tags: network } - { role: network_plugin, tags: network }
- { role: kubernetes/node-label, tags: node-label } - { role: kubernetes/node-label, tags: node-label }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment