Sha256: 5b4725ab1d12e2c7cca1f26fb87976ea33ba0c89fd4a7a0c87788095eb38821f
Contents?: true
Size: 1.69 KB
Versions: 22
Compression:
Stored size: 1.69 KB
Contents
class Kontena::Cli::StackCommand < Kontena::Command subcommand "install", "Install a stack to a grid", load_subcommand('stacks/install_command') subcommand ["ls", "list"], "List installed stacks in a grid", load_subcommand('stacks/list_command') subcommand ["remove","rm"], "Remove a deployed stack from a grid", load_subcommand('stacks/remove_command') subcommand "show", "Show details about a stack in a grid", load_subcommand('stacks/show_command') subcommand "inspect", "Show the Stack YAML of an installed stack", load_subcommand('stacks/inspect_command') subcommand "upgrade", "Upgrade a stack in a grid", load_subcommand('stacks/upgrade_command') subcommand ["start", "deploy"], "Deploy an installed stack in a grid", load_subcommand('stacks/deploy_command') subcommand "logs", "Show logs from services in a stack", load_subcommand('stacks/logs_command') subcommand "events", "Show events from services in a stack", load_subcommand('stacks/events_command') subcommand "monitor", "Monitor services in a stack", load_subcommand('stacks/monitor_command') subcommand "build", "Build images listed in a stack file and push them to an image registry", load_subcommand('stacks/build_command') subcommand ["reg", "registry"], "Stack registry related commands", load_subcommand('stacks/registry_command') subcommand "validate", "Process and validate a stack file", load_subcommand('stacks/validate_command') subcommand "stop", "Stop stacks services", load_subcommand('stacks/stop_command') subcommand "restart", "Restart stacks services", load_subcommand('stacks/restart_command') subcommand "label", "Stack label related commands", load_subcommand('stacks/label_command') def execute end end
Version data entries
22 entries across 22 versions & 1 rubygems