-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[raft] seperate out listen addr and grpc addr passed into dragonboat (#…
…8216) We want to listen on 0.0.0.0:4772 in order for port-forward to work; but we also want the hostname as part of the grpc address when passed into raft.
- Loading branch information
Showing
5 changed files
with
44 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
app1: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9901 --grpc_port=1970 --monitoring_port=9101 --internal_grpc_port=7701 --disable_telemetry --cache.raft.root_directory=/tmp/rnode1 --gossip.listen_addr=127.0.0.1:9201 --gossip.node_name=app1 --cache.raft.http_addr=127.0.0.1:9301 --cache.raft.grpc_addr=127.0.0.1:9401 --auto_migrate_db=false | ||
app1: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9901 --grpc_port=1970 --monitoring_port=9101 --internal_grpc_port=7701 --disable_telemetry --cache.raft.root_directory=/tmp/rnode1 --gossip.listen_addr=127.0.0.1:9201 --gossip.node_name=app1 --cache.raft.host_name=127.0.0.1 --cache.raft.http_port=9301 --cache.raft.grpc_port=9401 --auto_migrate_db=false | ||
|
||
app2: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9902 --grpc_port=1971 --monitoring_port=9102 --internal_grpc_port=7702 --disable_telemetry --cache.raft.root_directory=/tmp/rnode2 --gossip.listen_addr=127.0.0.1:9202 --gossip.node_name=app2 --cache.raft.http_addr=127.0.0.1:9302 --cache.raft.grpc_addr=127.0.0.1:9402 --auto_migrate_db=false | ||
app2: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9902 --grpc_port=1971 --monitoring_port=9102 --internal_grpc_port=7702 --disable_telemetry --cache.raft.root_directory=/tmp/rnode2 --gossip.listen_addr=127.0.0.1:9202 --gossip.node_name=app2 --cache.raft.host_name=127.0.0.1 --cache.raft.http_port=9302 --cache.raft.grpc_port=9402 --auto_migrate_db=false | ||
|
||
app3: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9903 --grpc_port=1972 --monitoring_port=9103 --internal_grpc_port=7703 --disable_telemetry --cache.raft.root_directory=/tmp/rnode3 --gossip.listen_addr=127.0.0.1:9203 --gossip.node_name=app3 --cache.raft.http_addr=127.0.0.1:9303 --cache.raft.grpc_addr=127.0.0.1:9403 --auto_migrate_db=false | ||
app3: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9903 --grpc_port=1972 --monitoring_port=9103 --internal_grpc_port=7703 --disable_telemetry --cache.raft.root_directory=/tmp/rnode3 --gossip.listen_addr=127.0.0.1:9203 --gossip.node_name=app3 --cache.raft.host_name=127.0.0.1 --cache.raft.http_port=9303 --cache.raft.grpc_port=9403 --auto_migrate_db=false | ||
|
||
app4: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9904 --grpc_port=1973 --monitoring_port=9104 --internal_grpc_port=7704 --disable_telemetry --cache.raft.root_directory=/tmp/rnode4 --gossip.listen_addr=127.0.0.1:9204 --gossip.node_name=app4 --cache.raft.http_addr=127.0.0.1:9304 --cache.raft.grpc_addr=127.0.0.1:9404 --auto_migrate_db=false | ||
app4: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9904 --grpc_port=1973 --monitoring_port=9104 --internal_grpc_port=7704 --disable_telemetry --cache.raft.root_directory=/tmp/rnode4 --gossip.listen_addr=127.0.0.1:9204 --gossip.node_name=app4 --cache.raft.host_name=127.0.0.1 --cache.raft.http_port=9304 --cache.raft.grpc_port=9404 --auto_migrate_db=false | ||
|
||
app5: bazel run enterprise/server -- --config_file=enterprise/config/buildbuddy.raft.yaml --telemetry_port=9905 --grpc_port=1974 --monitoring_port=9105 --internal_grpc_port=7705 --disable_telemetry --cache.raft.root_directory=/tmp/rnode5 --gossip.listen_addr=127.0.0.1:9205 --gossip.node_name=app5 --cache.raft.host_name=127.0.0.1 --cache.raft.http_port=9305 --cache.raft.grpc_port=9405 --auto_migrate_db=false |