forked from easzlab/kubeasz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
8 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
# to install docker service | ||
- hosts: | ||
- kube-master | ||
- new-master | ||
- kube-node | ||
- new-node | ||
roles: | ||
- docker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,28 @@ | ||
# reconfigure and restart the haproxy service | ||
- hosts: lb | ||
roles: | ||
- lb | ||
|
||
- hosts: new-master | ||
- hosts: "{{ NODE_TO_ADD }}" | ||
roles: | ||
- { role: chrony, when: "hostvars[groups.deploy[0]]['NTP_ENABLED'] == 'yes'" } | ||
- prepare | ||
- docker | ||
- kube-master | ||
- kube-node | ||
# | ||
- { role: calico, when: "CLUSTER_NETWORK == 'calico'" } | ||
- { role: cilium, when: "CLUSTER_NETWORK == 'cilium'" } | ||
- { role: flannel, when: "CLUSTER_NETWORK == 'flannel'" } | ||
- { role: kube-router, when: "CLUSTER_NETWORK == 'kube-router'" } | ||
# | ||
tasks: | ||
- name: Making master nodes SchedulingDisabled | ||
shell: "{{ bin_dir }}/kubectl cordon {{ inventory_hostname }} " | ||
shell: "{{ bin_dir }}/kubectl cordon {{ NODE_TO_ADD }} " | ||
delegate_to: "{{ groups.deploy[0] }}" | ||
when: DEPLOY_MODE != "allinone" | ||
ignore_errors: true | ||
|
||
- name: Setting master role name | ||
shell: "{{ bin_dir }}/kubectl label node {{ inventory_hostname }} kubernetes.io/role=master --overwrite" | ||
shell: "{{ bin_dir }}/kubectl label node {{ NODE_TO_ADD }} kubernetes.io/role=master --overwrite" | ||
ignore_errors: true | ||
delegate_to: "{{ groups.deploy[0] }}" | ||
|
||
# modify the ansible hosts file | ||
- hosts: | ||
- new-master | ||
tasks: | ||
- name: tag new-master FINISHED=yes | ||
shell: 'sed -i "/\[new-master/,/\[kube-node/s/{{ inventory_hostname }}/{{ inventory_hostname }} FINISHED=yes/" {{ base_dir }}/hosts' | ||
args: | ||
warn: false | ||
connection: local | ||
|
||
- name: cp new-master to 'kube-master' group | ||
lineinfile: | ||
dest: "{{ base_dir }}/hosts" | ||
state: present | ||
insertafter: '^\[kube-master' | ||
firstmatch: yes | ||
line: "{{ inventory_hostname }} NEW_MASTER=yes" | ||
connection: local | ||
|
||
- hosts: deploy | ||
tasks: | ||
- name: rm new-master in ansible hosts | ||
lineinfile: | ||
dest: "{{ base_dir }}/hosts" | ||
state: absent | ||
regexp: 'FINISHED=yes' | ||
connection: local | ||
# reconfigure and restart the haproxy service | ||
- hosts: lb | ||
roles: | ||
- { role: lb, tags:['restart_lb'] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters