Skip to content

Commit

Permalink
Merge pull request #25 from openinfradev/server_parameter_default
Browse files Browse the repository at this point in the history
trivial. change default server parameters.
  • Loading branch information
seungkyua authored Oct 23, 2023
2 parents c5d7a69 + 51f81a1 commit 3604042
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 3604042

Please sign in to comment.