Skip to content

Commit

Permalink
chore: update service names for k8s devnet assets
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid committed Sep 22, 2023
1 parent 91213c6 commit c01b2b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/stacks-network/src/orchestrator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,11 @@ impl DevnetOrchestrator {
) -> Result<ServicesMapHosts, String> {
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)
Expand Down

0 comments on commit c01b2b7

Please sign in to comment.