Sha256: 153762b026e98ccc00aec996e30aa5dce39c69882279054e9e0b00bbeda01ff4
Contents?: true
Size: 564 Bytes
Versions: 4
Compression:
Stored size: 564 Bytes
Contents
require_relative 'vpn/create_command' require_relative 'vpn/config_command' require_relative 'vpn/remove_command' require_relative 'vpn/delete_command' class Kontena::Cli::VpnCommand < Clamp::Command subcommand "create", "Create VPN service", Kontena::Cli::Vpn::CreateCommand subcommand "config", "Show/Export VPN config", Kontena::Cli::Vpn::ConfigCommand subcommand ["remove", "rm"], "Remove VPN service", Kontena::Cli::Vpn::RemoveCommand subcommand "delete", "[DEPRECATED] Delete VPN service", Kontena::Cli::Vpn::DeleteCommand def execute end end
Version data entries
4 entries across 4 versions & 1 rubygems