From 0d32b2235911a9a09f84fcfbbc38c184420c5e2a Mon Sep 17 00:00:00 2001 From: Krishna Srinivas Date: Fri, 28 Apr 2017 16:42:16 -0700 Subject: [PATCH] gateway: Fix help message for gateway (#4201) --- cmd/gateway-main.go | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/cmd/gateway-main.go b/cmd/gateway-main.go index b038049f4..f956b78fb 100644 --- a/cmd/gateway-main.go +++ b/cmd/gateway-main.go @@ -36,6 +36,9 @@ USAGE: FLAGS: {{range .VisibleFlags}}{{.}} {{end}}{{end}} +BACKEND: + azure: Microsoft Azure Blob Storage. Default ENDPOINT is https://core.windows.net + ENVIRONMENT VARIABLES: ACCESS: MINIO_ACCESS_KEY: Username or access key of your storage backend. @@ -43,29 +46,20 @@ ENVIRONMENT VARIABLES: EXAMPLES: 1. Start minio gateway server for Azure Blob Storage backend. + $ export MINIO_ACCESS_KEY=azureaccountname + $ export MINIO_SECRET_KEY=azureaccountkey $ {{.HelpName}} azure - - 2. Start minio gateway server bound to a specific ADDRESS:PORT. - $ {{.HelpName}} --address 192.168.1.101:9000 azure - - 3. Gateway server connecting to a custom Azure Blob Storage endpoint. - $ {{.HelpName}} azure https://azure-stack.domain.com - ` var gatewayCmd = cli.Command{ Name: "gateway", - Usage: "Start object storage gateway server.", + Usage: "Start object storage gateway.", Action: gatewayMain, CustomHelpTemplate: gatewayTemplate, - Flags: append(serverFlags, cli.BoolFlag{ - Name: "quiet", - Usage: "Disable startup banner.", - }, - cli.StringFlag{ - Name: "endpoint", - Usage: "The endpoint.", - Value: "https://s3.amazonaws.com/", + Flags: append(serverFlags, + cli.BoolFlag{ + Name: "quiet", + Usage: "Disable startup banner.", }, ), HideHelpCommand: true,