Skip to content

Commit

Permalink
refactor: add frontend start args (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
daviderli614 committed Jan 21, 2024
1 parent 1cdc306 commit 117cbfb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkg/config/baremetal.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@ func DefaultBareMetalConfig() *BareMetalClusterConfig {
Version: artifacts.LatestVersionTag,
},
Frontend: &Frontend{
Replicas: 1,
Replicas: 1,
HTTPAddr: "0.0.0.0:4000",
GRPCAddr: "0.0.0.0:4001",
MysqlAddr: "0.0.0.0:4002",
PostgresAddr: "0.0.0.0:4003",
OpentsdbAddr: "0.0.0.0:4242",
},
MetaSrv: &MetaSrv{
Replicas: 1,
Expand Down

0 comments on commit 117cbfb

Please sign in to comment.