Browse Source

Fix ansible calico route reflector tasks in calico role (#7224)

* Fix calico-rr tasks

* revert stdin only when it's already a string
pull/7245/head
forselli-stratio 3 years ago
committed by GitHub
parent
commit
88bee6c68e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 7 deletions
  1. 16
      roles/network_plugin/calico/tasks/install.yml

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

@ -138,7 +138,7 @@
- name: Calico | Configure calico network pool - name: Calico | Configure calico network pool
command: command:
cmd: "{{ bin_dir }}/calicoctl.sh apply -f -" cmd: "{{ bin_dir }}/calicoctl.sh apply -f -"
stdin: "{{ stdin | to_json }}"
stdin: "{{ stdin is string | ternary(stdin, stdin|to_json) }}"
vars: vars:
stdin: > stdin: >
{ "kind": "IPPool", { "kind": "IPPool",
@ -173,7 +173,7 @@
- name: Calico | Set up BGP Configuration - name: Calico | Set up BGP Configuration
command: command:
cmd: "{{ bin_dir }}/calicoctl.sh apply -f -" cmd: "{{ bin_dir }}/calicoctl.sh apply -f -"
stdin: "{{ stdin | to_json }}"
stdin: "{{ stdin is string | ternary(stdin, stdin|to_json) }}"
vars: vars:
stdin: > stdin: >
{ "kind": "BGPConfiguration", { "kind": "BGPConfiguration",
@ -194,7 +194,7 @@
- name: Calico | Configure peering with router(s) at global scope - name: Calico | Configure peering with router(s) at global scope
command: command:
cmd: "{{ bin_dir }}/calicoctl.sh apply -f -" cmd: "{{ bin_dir }}/calicoctl.sh apply -f -"
stdin: "{{ stdin | to_json }}"
stdin: "{{ stdin is string | ternary(stdin, stdin|to_json) }}"
vars: vars:
stdin: > stdin: >
{"apiVersion": "projectcalico.org/v3", {"apiVersion": "projectcalico.org/v3",
@ -219,7 +219,8 @@
- name: Calico | Configure peering with route reflectors at global scope - name: Calico | Configure peering with route reflectors at global scope
command: command:
cmd: "{{ bin_dir }}/calicoctl.sh apply -f -" cmd: "{{ bin_dir }}/calicoctl.sh apply -f -"
stdin: "{{ stdin | to_json }}"
# revert when it's already a string
stdin: "{{ stdin is string | ternary(stdin, stdin|to_json) }}"
vars: vars:
stdin: > stdin: >
{"apiVersion": "projectcalico.org/v3", {"apiVersion": "projectcalico.org/v3",
@ -244,7 +245,8 @@
- name: Calico | Configure route reflectors to peer with each other - name: Calico | Configure route reflectors to peer with each other
command: command:
cmd: "{{ bin_dir }}/calicoctl.sh apply -f -" cmd: "{{ bin_dir }}/calicoctl.sh apply -f -"
stdin: "{{ stdin | to_json }}"
# revert when it's already a string
stdin: "{{ stdin is string | ternary(stdin, stdin|to_json) }}"
vars: vars:
stdin: > stdin: >
{"apiVersion": "projectcalico.org/v3", {"apiVersion": "projectcalico.org/v3",
@ -320,7 +322,7 @@
- name: Calico | Configure node asNumber for per node peering - name: Calico | Configure node asNumber for per node peering
command: command:
cmd: "{{ bin_dir }}/calicoctl.sh apply -f -" cmd: "{{ bin_dir }}/calicoctl.sh apply -f -"
stdin: "{{ stdin | to_json }}"
stdin: "{{ stdin is string | ternary(stdin, stdin|to_json) }}"
vars: vars:
stdin: > stdin: >
{"apiVersion": "projectcalico.org/v3", {"apiVersion": "projectcalico.org/v3",
@ -347,7 +349,7 @@
- name: Calico | Configure peering with router(s) at node scope - name: Calico | Configure peering with router(s) at node scope
command: command:
cmd: "{{ bin_dir }}/calicoctl.sh apply -f -" cmd: "{{ bin_dir }}/calicoctl.sh apply -f -"
stdin: "{{ stdin | to_json }}"
stdin: "{{ stdin is string | ternary(stdin, stdin|to_json) }}"
vars: vars:
stdin: > stdin: >
{"apiVersion": "projectcalico.org/v3", {"apiVersion": "projectcalico.org/v3",

Loading…
Cancel
Save