Sha256: bc37ad9439bb4182c513bc23f3365b02c1c0674dba22341fae2aa1cdcc75a374
Contents?: true
Size: 587 Bytes
Versions: 153
Compression:
Stored size: 587 Bytes
Contents
require_relative 'common' module Kontena::Cli::Grids class CurrentCommand < Kontena::Command include Kontena::Cli::Common include Common option ["--name"], :flag, "Show name only", default: false def execute require_api_url if current_grid.nil? exit_with_error 'No grid selected. To select grid, please run: kontena grid use <grid name>' else grid = client(require_token).get("grids/#{current_grid}") if name? puts "#{grid['name']}" else print_grid(grid) end end end end end
Version data entries
153 entries across 153 versions & 2 rubygems