From a46cfd7ad051ba7205609c57fe66633d6bc08597 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1?= Date: Sat, 27 Feb 2021 09:01:20 +0100 Subject: [PATCH] =?UTF-8?q?*.app.zerops.dev=20->=C2=A0*.app.zerops.io=20(#?= =?UTF-8?q?18)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cmd/root.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cmd/root.go b/src/cmd/root.go index 1a414de2..35631574 100644 --- a/src/cmd/root.go +++ b/src/cmd/root.go @@ -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())