Sha256: c1fda49cb5d3e012a5ea2e06ffd0340fc8b08d2f09aaa462933bfe4967b8c549
Contents?: true
Size: 1.02 KB
Versions: 29
Compression:
Stored size: 1.02 KB
Contents
module Kontena::Cli::Stacks class RegistryCommand < Kontena::Command subcommand "push", "Push a stack into the stacks registry", load_subcommand('stacks/registry/push_command') subcommand "pull", "Pull a stack from the stacks registry", load_subcommand('stacks/registry/pull_command') subcommand ["search"], "Search for stacks in the stacks registry", load_subcommand('stacks/registry/search_command') subcommand "show", "Show info about a stack in the stacks registry", load_subcommand('stacks/registry/show_command') subcommand ["remove", "rm"], "Remove a stack (or version) from the stacks registry", load_subcommand('stacks/registry/remove_command') subcommand "create", "Create a stack in the registry", load_subcommand('stacks/registry/create_command') subcommand "make-private", "Change Stack visibility to private", load_subcommand('stacks/registry/make_private_command') subcommand "make-public", "Change Stack visibility to public", load_subcommand('stacks/registry/make_public_command') end end
Version data entries
29 entries across 29 versions & 2 rubygems