-
Notifications
You must be signed in to change notification settings - Fork 290
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
ST GoBGP backend #1382
ST GoBGP backend #1382
Conversation
Blocked on calico-bgp-daemon PR |
@@ -62,3 +68,11 @@ def test_single_route_reflector(self): | |||
workload_host2], | |||
ip_pass_list=[workload_host1.ip, | |||
workload_host2.ip]) | |||
|
|||
@attr('slow') | |||
def test_bird_route_reflector_cluster(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_cluster should probably just be _single
self._test_single_route_reflector(backend='bird') | ||
|
||
@attr('slow') | ||
def test_gobgp_route_reflector_cluster(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
tests/st/bgp/test_global_peers.py
Outdated
@@ -40,8 +39,8 @@ def test_global_peers(self): | |||
additional_docker_options=ADDITIONAL_DOCKER_OPTIONS, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ADDITIONAL_DOCKER_OPTIONS have been made part of the common code and removed from bgp.
Should now use CLUSTER_STORE_DOCKER_OPTIONS in docker_host.py
Signed-off-by: Wataru Ishida <[email protected]>
Reflected review comments and rebased on the master. projectcalico/calico-bgp-daemon#20 is needed to be merged to pass ST. |
test GoBGP backend as well as BIRD.
PRs below needs to be merged before this PR.
projectcalico/libcalico#173
projectcalico/calico-bgp-daemon#8