Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BGP] Increase timeout waiting for edpm-deployment Ready status #226

Merged
Merged
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
16 changes: 11 additions & 5 deletions automation/vars/bgp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ vas:
- path: examples/dt/bgp/control-plane
wait_conditions:
- >-
oc -n openstack wait osctlplane controlplane --for condition=Ready
oc -n openstack wait openstackcontrolplane
controlplane
--for condition=Ready
--timeout=30m
values:
- name: network-values
Expand All @@ -29,8 +31,10 @@ vas:
- path: examples/dt/bgp/edpm/nodeset
wait_conditions:
- >-
oc -n openstack wait
osdpns openstack-edpm --for condition=SetupReady --timeout=600s
oc -n openstack wait openstackdataplanenodeset
openstack-edpm
--for condition=SetupReady
--timeout=600s
values:
- name: edpm-nodeset-values
src_file: values.yaml
Expand All @@ -39,8 +43,10 @@ vas:
- path: examples/dt/bgp/edpm/deployment
wait_conditions:
- >-
oc -n openstack wait
osdpd edpm-deployment --for condition=Ready --timeout=1500s
oc -n openstack wait openstackdataplanedeployment
edpm-deployment
--for condition=Ready
--timeout=2400s
values:
- name: edpm-deployment-values
src_file: values.yaml
Expand Down