Sha256: 2da3e2d39e3be61223a1020114f5e91c1c454758bf010ed777cbba292fbe3896
Contents?: true
Size: 1.17 KB
Versions: 12
Compression:
Stored size: 1.17 KB
Contents
require 'trollop' module SimplePerf module CLI class Update include Shared def execute opts = Trollop::options do version SimplePerf::VERSION banner <<-EOS Updates number of JMeter or Gatling instances. Usage: simple_perf update -e ENVIRONMENT -p PROJECT_NAME -c COUNT EOS opt :help, "Display Help" opt :environment, "Set the target environment", :type => :string opt :project, "Project name to manage", :type => :string opt :count, "Number of JMeter or Gatling instances", :type => :string end Trollop::die :environment, "is required but not specified" unless opts[:environment] Trollop::die :project, "is required but not specified" unless opts[:project] Trollop::die :count, "is required but not specified" unless opts[:count] command = 'simple_deploy update' + ' -e ' + opts[:environment] + ' -n ' + 'simple-perf-' + opts[:project] + ' -a MinimumInstances=' + opts[:count] + ' -a MaximumInstances=' + opts[:count] Shared::pretty_print `#{command}` end end end end
Version data entries
12 entries across 12 versions & 1 rubygems