Skip to content

Commit

Permalink
chore: update service names for k8s devnet assets (#1161)
Browse files Browse the repository at this point in the history
* chore: update service names for k8s devnet assets

* Update components/stacks-network/src/orchestrator.rs

Co-authored-by: Charlie <[email protected]>

---------

Co-authored-by: Charlie <[email protected]>
  • Loading branch information
MicaiahReid and CharlieC3 authored Oct 4, 2023
1 parent a3cd4d9 commit e03b941
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.{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 e03b941

Please sign in to comment.