18790: Don't retry unless we know the container exists.
[arvados.git] / cmd / arvados-client / cmd.go
index aefcce79a45a4eb65fbbed209801d684da6b4923..19d13437c898baad0fb2ceaea363c56ef7318d44 100644 (file)
@@ -11,6 +11,7 @@ import (
        "git.arvados.org/arvados.git/lib/cmd"
        "git.arvados.org/arvados.git/lib/costanalyzer"
        "git.arvados.org/arvados.git/lib/deduplicationreport"
+       "git.arvados.org/arvados.git/lib/diagnostics"
        "git.arvados.org/arvados.git/lib/mount"
 )
 
@@ -54,11 +55,14 @@ var (
                "virtual_machine":          cli.APICall,
                "workflow":                 cli.APICall,
 
-               "mount":                mount.Command,
-               "deduplication-report": deduplicationreport.Command,
+               "connect-ssh":          connectSSHCommand{},
                "costanalyzer":         costanalyzer.Command,
+               "deduplication-report": deduplicationreport.Command,
+               "diagnostics":          diagnostics.Command{},
+               "logs":                 logsCommand{},
+               "mount":                mount.Command,
                "shell":                shellCommand{},
-               "connect-ssh":          connectSSHCommand{},
+               "sudo":                 sudoCommand{},
        })
 )