Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
sessionAffinity: None
type: NodePort
register: r_expose_bastion
when: local_bastion|default(False)
when: local_bastion is defined
until: r_expose_bastion is success
retries: "{{ openshift_cnv_retries }}"
delay: "{{ openshift_cnv_delay }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
spec:
config: "{{ config | to_json }}"
vars:
config: "{'cniVersion':'0.3.1','type':'ovn-k8s-cni-overlay','topology':'layer2','name': '{{ _network.name }}{{ guid }}', 'netAttachDefName': '{{ openshift_cnv_namespace }}/{{ _network.name }}{{ guid }}', 'mtu': {{ _network.mtu | default(1500) }}}"
config:
cniVersion: "0.3.1"
type: "ovn-k8s-cni-overlay"
topology: "layer2"
name: "{{ _network.name }}{{ guid }}"
netAttachDefName: "{{ openshift_cnv_namespace }}/{{ _network.name }}{{ guid }}"
mtu: "{{ _network.mtu | default(1500) | int }}"
register: r_createnetwork
until: r_createnetwork is success
retries: "{{ openshift_cnv_retries }}"
Expand Down
Loading