This is an automated email from the ASF dual-hosted git repository. pearl11594 pushed a commit to branch nsx-add-lb-route-adv in repository https://gitbox.apache.org/repos/asf/cloudstack.git
commit 01384c6b48f7a0a6bddeb825cc5732c96f53eb97 Author: Pearl Dsilva <[email protected]> AuthorDate: Thu Nov 2 10:36:32 2023 -0400 NSX: Add ALL LB IP to the list of route advertisements in tier1 --- .../nsx/src/main/java/org/apache/cloudstack/service/NsxApiClient.java | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/service/NsxApiClient.java b/plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/service/NsxApiClient.java index 04244bb3d1f..3f4203c37ea 100644 --- a/plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/service/NsxApiClient.java +++ b/plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/service/NsxApiClient.java @@ -252,6 +252,7 @@ public class NsxApiClient { private List<String> getRouterAdvertisementTypeList(boolean sourceNatEnabled) { List<String> types = new ArrayList<>(); types.add(RouteAdvertisementType.TIER1_IPSEC_LOCAL_ENDPOINT.name()); + types.add(RouteAdvertisementType.TIER1_LB_VIP.name()); types.add(RouteAdvertisementType.TIER1_NAT.name()); if (!sourceNatEnabled) { types.add(RouteAdvertisementType.TIER1_CONNECTED.name());
