Sha256: 1e5696e45d96de5fd34a869c89a20b504268f3e7ab8bfcc4bfc4585f1aa34671
Contents?: true
Size: 515 Bytes
Versions: 4
Compression:
Stored size: 515 Bytes
Contents
desc 'Add nodes to a load balancer' arg_name 'lb-id node-id...' command [:add_nodes] do |c| c.action do |global_options, options, args| raise "You must specify the load balancer and the node ids to add" if args.size < 2 lb = LoadBalancer.find(args.shift) nodes = Server.find_or_call(args) do |id| raise "Couldn't find server #{id}" end info "Adding #{nodes.size} nodes to load balancer #{lb.id}" lb.add_nodes nodes lb.reload render_table([lb], global_options) end end
Version data entries
4 entries across 4 versions & 1 rubygems