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