Skip to content

Commit

Permalink
*.app.zerops.dev -> *.app.zerops.io (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
fxck authored Feb 27, 2021
1 parent 0ab9999 commit a46cfd7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ func ExecuteCmd() error {
Use: "zcli",
}

params.RegisterPersistentString(rootCmd, constants.PersistentParamRestApiAddress, "https://api.app.zerops.dev", "address of rest api")
params.RegisterPersistentString(rootCmd, constants.PersistentParamGrpcApiAddress, "api.app.zerops.dev:20902", "address of grpc api")
params.RegisterPersistentString(rootCmd, constants.PersistentParamVpnApiAddress, "vpn.app.zerops.dev", "address of vpn api")
params.RegisterPersistentString(rootCmd, constants.PersistentParamCaCertificateUrl, "https://api.app.zerops.dev/ca.crt", "download url for certificate of Zerops certificate authority used for tls encrypted communication via gRPC")
params.RegisterPersistentString(rootCmd, constants.PersistentParamRestApiAddress, "https://api.app.zerops.io", "address of rest api")
params.RegisterPersistentString(rootCmd, constants.PersistentParamGrpcApiAddress, "api.app.zerops.io:20902", "address of grpc api")
params.RegisterPersistentString(rootCmd, constants.PersistentParamVpnApiAddress, "vpn.app.zerops.io", "address of vpn api")
params.RegisterPersistentString(rootCmd, constants.PersistentParamCaCertificateUrl, "https://api.app.zerops.io/ca.crt", "download url for certificate of Zerops certificate authority used for tls encrypted communication via gRPC")

rootCmd.AddCommand(deployCmd())
rootCmd.AddCommand(pushCmd())
Expand Down

0 comments on commit a46cfd7

Please sign in to comment.