mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
Configuring calico pool once, before starting calico-node
This commit is contained in:
@@ -9,6 +9,12 @@
|
|||||||
- name: Calico | Create calicoctl symlink (needed by kubelet)
|
- name: Calico | Create calicoctl symlink (needed by kubelet)
|
||||||
file: src=/usr/local/bin/calicoctl dest=/usr/bin/calicoctl state=link
|
file: src=/usr/local/bin/calicoctl dest=/usr/bin/calicoctl state=link
|
||||||
|
|
||||||
|
- name: Calico | Configure calico-node desired pool
|
||||||
|
shell: calicoctl pool add {{ kube_pods_subnet }}
|
||||||
|
environment:
|
||||||
|
ETCD_AUTHORITY: "{{ groups['kube-master'][0] }}:2379"
|
||||||
|
run_once: true
|
||||||
|
|
||||||
- name: Calico | Write calico-node systemd init file
|
- name: Calico | Write calico-node systemd init file
|
||||||
template: src=calico/calico-node.service.j2 dest=/etc/systemd/system/calico-node.service
|
template: src=calico/calico-node.service.j2 dest=/etc/systemd/system/calico-node.service
|
||||||
register: newservice
|
register: newservice
|
||||||
@@ -24,18 +30,6 @@
|
|||||||
- name: Calico | Enable calico-node
|
- name: Calico | Enable calico-node
|
||||||
service: name=calico-node enabled=yes state=started
|
service: name=calico-node enabled=yes state=started
|
||||||
|
|
||||||
- name: Calico | Configure calico-node desired pool
|
|
||||||
shell: calicoctl pool add {{ kube_pods_subnet }}
|
|
||||||
environment:
|
|
||||||
ETCD_AUTHORITY: "{{ groups['kube-master'][0] }}:4001"
|
|
||||||
run_once: true
|
|
||||||
|
|
||||||
- name: Calico | Configure calico-node remove default pool
|
|
||||||
shell: calicoctl pool remove 192.168.0.0/16
|
|
||||||
environment:
|
|
||||||
ETCD_AUTHORITY: "{{ groups['kube-master'][0] }}:4001"
|
|
||||||
run_once: true
|
|
||||||
|
|
||||||
- name: Calico | Disable node mesh
|
- name: Calico | Disable node mesh
|
||||||
shell: calicoctl bgp node-mesh off
|
shell: calicoctl bgp node-mesh off
|
||||||
when: peer_with_router|default(false) and inventory_hostname in groups['kube-node']
|
when: peer_with_router|default(false) and inventory_hostname in groups['kube-node']
|
||||||
|
|||||||
Reference in New Issue
Block a user