Sha256: 0f890bb0527c144d8a072fd59a31872c39a735500dcca2713f8c244351b16c33
Contents?: true
Size: 627 Bytes
Versions: 34
Compression:
Stored size: 627 Bytes
Contents
class Kontena::Cli::EtcdCommand < Kontena::Command subcommand "get", "Get the current value for a single key", load_subcommand('etcd/get_command') subcommand "set", "Set a value on the specified key", load_subcommand('etcd/set_command') subcommand ["mkdir", "mk"], "Create a directory", load_subcommand('etcd/mkdir_command') subcommand ["list", "ls"], "List a directory", load_subcommand('etcd/list_command') subcommand ["remove", "rm"], "Remove a key or a directory", load_subcommand('etcd/remove_command') subcommand "health", "Check etcd health", load_subcommand('etcd/health_command') def execute end end
Version data entries
34 entries across 34 versions & 2 rubygems