kubeasz/20.addnode.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2017-11-25 21:37:43 +08:00
- hosts: new-node
roles:
2018-08-17 09:18:55 +08:00
- { role: chrony, when: "hostvars[groups.deploy[0]]['NTP_ENABLED'] == 'yes'" }
2017-11-25 21:37:43 +08:00
- prepare
- docker
- kube-node
#
2018-03-08 16:24:52 +08:00
- { role: calico, when: "CLUSTER_NETWORK == 'calico'" }
2018-08-05 16:12:32 +08:00
- { role: cilium, when: "CLUSTER_NETWORK == 'cilium'" }
2018-03-08 16:24:52 +08:00
- { role: flannel, when: "CLUSTER_NETWORK == 'flannel'" }
- { role: kube-router, when: "CLUSTER_NETWORK == 'kube-router'" }
# modify the ansible hosts file
- hosts:
- new-node
tasks:
- name: tag new-node FINISHED=yes
shell: 'sed -i "/\[new-node/,/\[harbor/s/{{ inventory_hostname }}/{{ inventory_hostname }} FINISHED=yes/" {{ base_dir }}/hosts'
args:
warn: false
connection: local
- name: cp new-node to 'kube-node' group
lineinfile:
dest: "{{ base_dir }}/hosts"
state: present
insertafter: '^\[kube-node'
firstmatch: yes
line: "{{ inventory_hostname }} NEW_NODE=yes"
connection: local
- hosts: deploy
tasks:
- name: rm new-node in ansible hosts
lineinfile:
dest: "{{ base_dir }}/hosts"
state: absent
regexp: 'FINISHED=yes'
connection: local