Skip to content

Commit

Permalink
trivial. change default server parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
ktkfree committed Oct 23, 2023
1 parent c5d7a69 commit 51f81a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ func init() {
flag.Int("port", 9112, "service port")
flag.String("argo-address", "localhost", "server address for argo-workflow-server")
flag.Int("argo-port", 2746, "server port for argo-workflow-server")
flag.String("tks-api-address", "http://localhost", "server address for tks-api")
flag.Int("tks-api-port", 8080, "server port number for tks-api")
flag.String("tks-api-account", "", "account name for tks-api")
flag.String("tks-api-password", "", "the password for tks-api account")
flag.String("tks-api-address", "http://tks-api.tks.svc", "server address for tks-api")
flag.Int("tks-api-port", 9110, "server port number for tks-api")
flag.String("tks-api-account", "admin", "account name for tks-api")
flag.String("tks-api-password", "admin", "the password for tks-api account")

flag.String("dbhost", "localhost", "host of postgreSQL")
flag.String("dbport", "5432", "port of postgreSQL")
Expand Down

0 comments on commit 51f81a1

Please sign in to comment.