From c01b2b752c147faf5ff2d863ca076f186c87f1ab Mon Sep 17 00:00:00 2001 From: MicaiahReid Date: Fri, 22 Sep 2023 14:03:00 -0400 Subject: [PATCH 1/2] chore: update service names for k8s devnet assets --- components/stacks-network/src/orchestrator.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/stacks-network/src/orchestrator.rs b/components/stacks-network/src/orchestrator.rs index 5c736bb9b..b8791d57a 100644 --- a/components/stacks-network/src/orchestrator.rs +++ b/components/stacks-network/src/orchestrator.rs @@ -169,11 +169,11 @@ impl DevnetOrchestrator { ) -> Result { let services_map_hosts = ServicesMapHosts { bitcoin_node_host: format!( - "bitcoind-chain-coordinator-service.{namespace}.svc.cluster.local:18443" + "bitcoind-chain-coordinator.{namespace}.svc.cluster.local:18443" ), - stacks_node_host: format!("stacks-node-service.{namespace}.svc.cluster.local:20443"), - postgres_host: format!("stacks-api-service.{namespace}.svc.cluster.local:5432"), - stacks_api_host: format!("stacks-api-service.{namespace}.svc.cluster.local:3999"), + stacks_node_host: format!("stacks-blockchain.{namespace}.svc.cluster.local:20443"), + postgres_host: format!("stacks-blockchain-api-pg.{namespace}.svc.cluster.local:5432"), + stacks_api_host: format!("stacks-blockchain-api.{namespace}.svc.cluster.local:3999"), stacks_explorer_host: "localhost".into(), // todo (micaiah) bitcoin_explorer_host: "localhost".into(), // todo (micaiah) subnet_node_host: "localhost".into(), // todo (micaiah) From 2bdce044b144fdb1e3c1606f08305cda172e42f7 Mon Sep 17 00:00:00 2001 From: Micaiah Reid Date: Fri, 22 Sep 2023 19:09:05 -0400 Subject: [PATCH 2/2] Update components/stacks-network/src/orchestrator.rs Co-authored-by: Charlie <2747302+CharlieC3@users.noreply.github.com> --- components/stacks-network/src/orchestrator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/stacks-network/src/orchestrator.rs b/components/stacks-network/src/orchestrator.rs index b8791d57a..587bb1f47 100644 --- a/components/stacks-network/src/orchestrator.rs +++ b/components/stacks-network/src/orchestrator.rs @@ -172,7 +172,7 @@ impl DevnetOrchestrator { "bitcoind-chain-coordinator.{namespace}.svc.cluster.local:18443" ), stacks_node_host: format!("stacks-blockchain.{namespace}.svc.cluster.local:20443"), - postgres_host: format!("stacks-blockchain-api-pg.{namespace}.svc.cluster.local:5432"), + postgres_host: format!("stacks-blockchain-api.{namespace}.svc.cluster.local:5432"), stacks_api_host: format!("stacks-blockchain-api.{namespace}.svc.cluster.local:3999"), stacks_explorer_host: "localhost".into(), // todo (micaiah) bitcoin_explorer_host: "localhost".into(), // todo (micaiah)