X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/10c1e7359286edd6562c52304e9706449a9ee53f..2f66d4cc05e9442a9bb69969744d0750a02a1ed4:/services/crunch-dispatch-slurm/usage.go diff --git a/services/crunch-dispatch-slurm/usage.go b/services/crunch-dispatch-slurm/usage.go index bcfa5b8a39..b2d157cbdb 100644 --- a/services/crunch-dispatch-slurm/usage.go +++ b/services/crunch-dispatch-slurm/usage.go @@ -10,21 +10,6 @@ import ( "os" ) -var exampleConfigFile = []byte(` - { - "Client": { - "APIHost": "zzzzz.arvadosapi.com", - "AuthToken": "xyzzy", - "Insecure": false - "KeepServiceURIs": [], - }, - "CrunchRunCommand": ["crunch-run"], - "PollPeriod": "10s", - "SbatchArguments": ["--partition=foo", "--exclude=node13"], - "ReserveExtraRAM": 268435456, - "BatchSize": 10000 - }`) - func usage(fs *flag.FlagSet) { fmt.Fprintf(os.Stderr, ` crunch-dispatch-slurm runs queued Arvados containers by submitting @@ -34,7 +19,7 @@ Options: `) fs.PrintDefaults() fmt.Fprintf(os.Stderr, ` -Example config file: -%s -`, exampleConfigFile) + +For configuration instructions see https://doc.arvados.org/install/crunch2-slurm/install-dispatch.html +`) }