Skip to content
This repository was archived by the owner on Mar 31, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
04cbb1e
Update router manager api
DavidLiu506 Jun 29, 2021
4c100e5
Update code
DavidLiu506 Jun 29, 2021
e38bcf9
Update code
DavidLiu506 Jun 30, 2021
067a988
Update router manager
DavidLiu506 Jul 1, 2021
dd5dafd
Update router manager
DavidLiu506 Jul 1, 2021
aa76562
Merge router manager service api code
DavidLiu506 Jul 2, 2021
8ae37db
Fix getVpcRouteTables
DavidLiu506 Jul 2, 2021
f0462ae
Fix getVpcRouteTable
DavidLiu506 Jul 2, 2021
976883f
Update RouterController
DavidLiu506 Jul 6, 2021
ef7a2d2
Update code
DavidLiu506 Jul 6, 2021
670dcc6
Update code
DavidLiu506 Jun 29, 2021
59a65f0
Update code
DavidLiu506 Jun 30, 2021
1178f61
pull alcor code
DavidLiu506 Jul 9, 2021
5a98d10
Merge branch 'futurewei-cloud:master' into master
DavidLiu506 Jul 21, 2021
e4e0792
Merge branch 'master' of https://github.com/futurewei-cloud/alcor
DavidLiu506 Aug 13, 2021
ae15be0
Merge branch 'futurewei-cloud:master' into master
DavidLiu506 Aug 15, 2021
9c88b19
Merge branch 'futurewei-cloud:master' into master
DavidLiu506 Aug 21, 2021
9be2bb9
Merge branch 'futurewei-cloud:master' into master
DavidLiu506 Sep 13, 2021
733872a
Merge branch 'master' of https://github.com/futurewei-cloud/alcor
DavidLiu506 Oct 19, 2021
b3154ae
Merge branch 'futurewei-cloud:master' into master
DavidLiu506 Oct 21, 2021
e2bed17
Merge branch 'master' of https://github.com/DavidLiu506/alcor
DavidLiu506 Oct 21, 2021
7c5013e
Merge branch 'futurewei-cloud:master' into master
DavidLiu506 Oct 23, 2021
9902ad5
Update code
DavidLiu506 Oct 23, 2021
d4ce715
Update code
DavidLiu506 Oct 23, 2021
667acd3
Update code
DavidLiu506 Oct 23, 2021
36ce194
Update code
DavidLiu506 Oct 23, 2021
e6bc600
Update code
DavidLiu506 Oct 23, 2021
221e552
Update code
DavidLiu506 Oct 23, 2021
ccaddcf
Update code
DavidLiu506 Oct 23, 2021
50e6cb1
Update code
DavidLiu506 Oct 23, 2021
978aed1
Update code
DavidLiu506 Oct 23, 2021
ebd46f8
Update code
DavidLiu506 Oct 23, 2021
8ee828d
Update code
DavidLiu506 Oct 23, 2021
1a9bc8c
Update code
DavidLiu506 Oct 23, 2021
42156af
Update code
DavidLiu506 Oct 23, 2021
3fc502e
Update code
DavidLiu506 Oct 24, 2021
76a0477
Update code
DavidLiu506 Oct 25, 2021
6b8dc2d
Update code
DavidLiu506 Oct 25, 2021
15a60e9
Update code
DavidLiu506 Oct 25, 2021
2aa669d
Update code
DavidLiu506 Oct 26, 2021
dcbe16c
Update code
DavidLiu506 Oct 26, 2021
4b5428e
Update code
DavidLiu506 Oct 26, 2021
3f98c40
Update code
DavidLiu506 Oct 26, 2021
ac1cab5
Update code
DavidLiu506 Oct 27, 2021
a636969
Update code
DavidLiu506 Oct 27, 2021
fd7b860
Update code
DavidLiu506 Oct 27, 2021
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
8 changes: 7 additions & 1 deletion kubernetes/services/dpm_manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ data:
dataplane.isovs=true
# the zipkin host should be YOURS
# spring.zipkin.base-url=http://10.213.43.187:9411

grpc.min-threads = 100
grpc.max-threads = 200
grpc.threads-pool-name = grpc-thread-pool

grpc.number-of-channels-per-host = 10
grpc.number-of-warmups-per-channel = 1
grpc.monitor-hosts = 0.0.0.0,0.0.0.1


#DPM v1 is statically using version 101
#DPM v2 will start with version 102
protobuf.goal-state-message.version = 102
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,10 @@ private List<String> processPortConfiguration(NetworkConfiguration networkConfig
if (zetaGatwayEnabled) {
zetaGatewayClient.enableZetaGatewayForPort(portEntity);
}

boolean fastPath = portEntity.getFastPath() == null ? false : portEntity.getFastPath();
boolean fastPath = true;
if (portEntity.getFastPath() != null && portEntity.getFastPath() == false) {
fastPath = portEntity.getFastPath();
}
if (fastPath) {
if (!grpcHostPortEntities.containsKey(portEntity.getBindingHostIP())) {
grpcHostPortEntities.put(portEntity.getBindingHostIP(), new ArrayList<>());
Expand Down
Loading