Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion configuration/compose/validator.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Grpc = "ClearText"
host = "proxy"
private_port = 20100
public_port = 19100
metrics_host = "proxy"
metrics_port = 21100

[[shards]]
Expand Down
4 changes: 2 additions & 2 deletions linera-service/src/cli_wrappers/local_kubernetes_net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ impl LocalKubernetesNet {
Grpc = "ClearText"
[[proxies]]
host = "proxy-0.default.svc.cluster.local"
host = "proxy-0.proxy-internal.default.svc.cluster.local"
public_port = {port}
private_port = {internal_port}
metrics_port = {metrics_port}
Expand Down Expand Up @@ -495,7 +495,7 @@ impl LocalKubernetesNet {
let local_port = 19100 + i;
kubectl_instance.port_forward(
proxy_service,
&format!("{local_port}:{local_port}"),
&format!("{local_port}:19100"),
cluster_id,
)?;

Expand Down
1 change: 0 additions & 1 deletion linera-service/src/cli_wrappers/local_net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ impl LocalNet {
host = "{internal_host}"
public_port = {public_port}
private_port = {internal_port}
metrics_host = "{external_host}"
metrics_port = {metrics_port}
"#
));
Expand Down
1 change: 0 additions & 1 deletion linera-service/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,6 @@ mod test {
host = "proxy"
public_port = 20100
private_port = 20200
metrics_host = "proxy"
metrics_port = 21100

[[shards]]
Expand Down
Loading