Sha256: 1c5f4c7bb96448ebadce328a090143b799fcbe54eadd82856b29450279362468
Contents?: true
Size: 668 Bytes
Versions: 28
Compression:
Stored size: 668 Bytes
Contents
module Kontena::Cli::Nodes::Labels class RemoveCommand < Clamp::Command include Kontena::Cli::Common parameter "NODE_ID", "Node id" parameter "LABEL", "Label" def execute require_api_url require_current_grid token = require_token node = client(token).get("grids/#{current_grid}/nodes/#{node_id}") unless node['labels'].include?(label) abort("Node #{node['name']} does not have label #{label}") end node['labels'].delete(label) data = {} data[:labels] = node['labels'] client.put("nodes/#{node['id']}", data, {}, {'Kontena-Grid-Token' => node['grid']['token']}) end end end
Version data entries
28 entries across 28 versions & 1 rubygems