Sha256: 748317ce39a2764a2fe23dea85040c4e21c0ddbe2f2efaed5f4f6299aff76426
Contents?: true
Size: 578 Bytes
Versions: 34
Compression:
Stored size: 578 Bytes
Contents
module Kontena::Cli::ExternalRegistries class RemoveCommand < Kontena::Command include Kontena::Cli::Common parameter "NAME", "External registry name to remove" option "--force", :flag, "Force remove", default: false, attribute_name: :forced def execute require_api_url token = require_token confirm_command(name) unless forced? spinner "Removing #{pastel.cyan(name)} external-registry from #{pastel.cyan(current_grid)} grid " do client(token).delete("external_registries/#{current_grid}/#{name}") end end end end
Version data entries
34 entries across 34 versions & 2 rubygems