14715: Keepproxy uses cluster config
[arvados.git] / services / keepproxy / usage.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package main
6
7 import (
8         "fmt"
9         "os"
10 )
11
12 func usage() {
13         fmt.Fprintf(os.Stderr, `
14 Keepproxy forwards GET and PUT requests to keepstore servers. See
15 http://doc.arvados.org/install/install-keepproxy.html
16
17 Usage: keepproxy [-config path/to/keepproxy.yml]
18
19 DEPRECATION WARNING: The -config parameter is deprecated. Use the
20 cluster config instead.
21
22 `)
23 }