Sha256: 752581530786d21ee2ccaf0ace72d34ae0ef5ad4ffa4156d5ee96662d33f4869
Contents?: true
Size: 526 Bytes
Versions: 21
Compression:
Stored size: 526 Bytes
Contents
module Kontena::Cli::Nodes::Labels class AddCommand < Kontena::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}") data = {} data[:labels] = node['labels'].to_a | [label] client.put("nodes/#{node['id']}", data, {}, {'Kontena-Grid-Token' => node['grid']['token']}) end end end
Version data entries
21 entries across 21 versions & 1 rubygems