Sha256: 07316019fce1964e14f27dc1b4ed932b53a6a2f5d14b84f946b10624d6cd21bd

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

Contents

require_relative 'common'

module Kontena::Cli::Stacks
  class RemoveCommand < Kontena::Command
    include Kontena::Cli::Common
    include Kontena::Cli::GridOptions
    include Common

    parameter "NAME", "Stack name"
    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 stack #{pastel.cyan(name)} " do
        remove_stack(token, name)
        wait_stack_removal(token, name)
      end
    end

    def remove_stack(token, name)
      client(token).delete("stacks/#{current_grid}/#{name}")
    end

    def wait_stack_removal(token, name)
      removed = false
      until removed == true
        begin
          client(token).get("stacks/#{current_grid}/#{name}")
          sleep 1
        rescue Kontena::Errors::StandardError => exc
          if exc.status == 404
            removed = true
          else
            raise exc
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
kontena-cli-1.0.0.pre2 lib/kontena/cli/stacks/remove_command.rb
kontena-cli-1.0.0.pre1 lib/kontena/cli/stacks/remove_command.rb
kontena-cli-0.17.0.pre5 lib/kontena/cli/stacks/remove_command.rb
kontena-cli-0.17.0.pre4 lib/kontena/cli/stacks/remove_command.rb
kontena-cli-0.17.0.pre3 lib/kontena/cli/stacks/remove_command.rb
kontena-cli-0.17.0.pre2 lib/kontena/cli/stacks/remove_command.rb
kontena-cli-0.17.0.pre1 lib/kontena/cli/stacks/remove_command.rb