Browse Source

Fix calico v3.4.0 scale and upgrade (#4531)

* reset calico after install

* remove extra line
release-2.9
Xavi 5 years ago
committed by Kubernetes Prow Robot
parent
commit
fc1edbe79d
2 changed files with 11 additions and 10 deletions
  1. 19
      roles/network_plugin/calico/handlers/main.yml
  2. 2
      roles/network_plugin/calico/tasks/install.yml

19
roles/network_plugin/calico/handlers/main.yml

@ -1,15 +1,14 @@
--- ---
- name: restart calico-node
- name: reset_calico_cni
command: /bin/true command: /bin/true
notify: notify:
- Calico | reload systemd
- Calico | reload calico-node
- delete 10-calico.conflist
- delete calico-node containers
- name: Calico | reload systemd
shell: systemctl daemon-reload
- name: delete 10-calico.conflist
file:
path: /etc/calico/10-calico.conflist
state: absent
- name: Calico | reload calico-node
service:
name: calico-node
state: restarted
sleep: 10
- name: delete calico-node containers
shell: "docker ps -af name=k8s_POD_calico-node* -q | xargs --no-run-if-empty docker rm -f"

2
roles/network_plugin/calico/tasks/install.yml

@ -4,6 +4,8 @@
src: "cni-calico.conflist.j2" src: "cni-calico.conflist.j2"
dest: "/etc/cni/net.d/{% if calico_version is version('v3.3.0', '>=') %}calico.conflist.template{% else %}10-calico.conflist{% endif %}" dest: "/etc/cni/net.d/{% if calico_version is version('v3.3.0', '>=') %}calico.conflist.template{% else %}10-calico.conflist{% endif %}"
owner: kube owner: kube
register: calico_conflist
notify: reset_calico_cni
- name: Calico | Create calico certs directory - name: Calico | Create calico certs directory
file: file:

Loading…
Cancel
Save