Sha256: e0fbba9f54c34fc454f130274450dcc176a2392ab9c7563e48f0e2b6f16c14ce

Contents?: true

Size: 1.94 KB

Versions: 39

Compression:

Stored size: 1.94 KB

Contents

#!/usr/bin/env ruby

# This example demonstrates adding a poicy to an auto scaling group with the Rackpace Open Cloud

require 'fog'

def get_user_input(prompt)
  print "#{prompt}: "
  gets.chomp
end

def get_user_input_as_int(prompt)
  str = get_user_input(prompt)
  str.to_i
end

# Use username defined in ~/.fog file, if absent prompt for username.
# For more details on ~/.fog refer to http://fog.io/about/getting_started.html
def rackspace_username
  Fog.credentials[:rackspace_username] || get_user_input("Enter Rackspace Username")
end

# Use api key defined in ~/.fog file, if absent prompt for api key
# For more details on ~/.fog refer to http://fog.io/about/getting_started.html
def rackspace_api_key
  Fog.credentials[:rackspace_api_key] || get_user_input("Enter Rackspace API key")
end

def select_group(groups)
  abort "\nThere are not any scaling groups in the Chicago region. Try running create_scaling_group.rb\n\n" if groups.empty?

  puts "\nSelect Group For New Policy:\n\n"
  groups.each_with_index do |group, i|
    config = group.group_config
    puts "\t #{i}. #{config.name}"
  end

  select_str = get_user_input "\nEnter Group Number"
  groups[select_str.to_i]
end

# create auto scaling service
auto_scale_service = Fog::Rackspace::AutoScale.new({
  :rackspace_username   => rackspace_username,
  :rackspace_api_key    => rackspace_api_key,
  :rackspace_region => :ord # Use Chicago Region
})

# retrieve list of scaling groups
groups = auto_scale_service.groups

# prompt group
group = select_group(groups)

# prompt for policy name
policy_name = get_user_input "Enter name for policy"

# prompt for cool down period for policy
cooldown = get_user_input_as_int "Enter cool down period in seconds"

# prompt for change increment
change = get_user_input_as_int "Enter change increment"

group.policies.create :name => policy_name, :cooldown => cooldown, :type => 'webhook', :change => change

puts "\nPolicy #{policy_name} was successfully added to group"

Version data entries

39 entries across 37 versions & 6 rubygems

Version Path
fog-rackspace-0.1.6 lib/fog/rackspace/examples/auto_scale/add_policy.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/examples/auto_scale/add_policy.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/examples/auto_scale/add_policy.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-rackspace-0.1.5 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-rackspace-0.1.4 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-rackspace-0.1.3 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-rackspace-0.1.2 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-rackspace-0.1.1 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-rackspace-0.1.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-1.37.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-1.36.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-1.35.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-2.0.0.pre.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-1.34.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-1.33.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-1.32.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
fog-1.31.0 lib/fog/rackspace/examples/auto_scale/add_policy.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/rackspace/examples/auto_scale/add_policy.rb