Skip to content

Commit

Permalink
Fix typos in calico (#9327)
Browse files Browse the repository at this point in the history
  • Loading branch information
HoKim98 authored Sep 26, 2022
1 parent 6dff393 commit 18efdc2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/calico.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ node5
[rack0:vars]
cluster_id="1.0.0.1"
calcio_rr_id=rr1
calico_rr_id=rr1
calico_group_id=rr1
```

Expand Down
4 changes: 2 additions & 2 deletions roles/network_plugin/calico/rr/tasks/update-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
retry_count: "{{ 0 if retry_count is undefined else retry_count|int + 1 }}"

- name: Calico | Set label for route reflector # noqa 301 305
shell: "{{ bin_dir }}/calicoctl.sh label node {{ inventory_hostname }} calico-rr-id={{ calcio_rr_id }} --overwrite"
shell: "{{ bin_dir }}/calicoctl.sh label node {{ inventory_hostname }} calico-rr-id={{ calico_rr_id }} --overwrite"
changed_when: false
register: calico_rr_id_label
until: calico_rr_id_label is succeeded
delay: "{{ retry_stagger | random + 3 }}"
retries: 10
when: calcio_rr_id is defined
when: calico_rr_id is defined

- name: Calico-rr | Fetch current node object
command: "{{ bin_dir }}/calicoctl.sh get node {{ inventory_hostname }} -ojson"
Expand Down
8 changes: 4 additions & 4 deletions roles/network_plugin/calico/tasks/peer_with_calico_rr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
{"apiVersion": "projectcalico.org/v3",
"kind": "BGPPeer",
"metadata": {
"name": "{{ calcio_rr_id }}-to-node"
"name": "{{ calico_rr_id }}-to-node"
},
"spec": {
"peerSelector": "calico-rr-id == '{{ calcio_rr_id }}'",
"peerSelector": "calico-rr-id == '{{ calico_rr_id }}'",
"nodeSelector": "calico-group-id == '{{ calico_group_id }}'"
}}
register: output
retries: 4
until: output.rc == 0
delay: "{{ retry_stagger | random + 3 }}"
when:
- calcio_rr_id is defined
- calico_rr_id is defined
- calico_group_id is defined
- inventory_hostname in groups['calico_rr']

Expand Down Expand Up @@ -58,7 +58,7 @@
- "{{ groups['calico_rr'] | default([]) }}"
when:
- inventory_hostname == groups['kube_control_plane'][0]
- calcio_rr_id is not defined or calico_group_id is not defined
- calico_rr_id is not defined or calico_group_id is not defined

- name: Calico | Configure route reflectors to peer with each other
command:
Expand Down

0 comments on commit 18efdc2

Please sign in to comment.