Вращение нескольких серверов EC2 с ножом и присвоение эластичного дюйм/с от пула

Проверьте BIOS и посмотрите, о сколько памяти сообщают там. Не походит на проблему ОС.

0
задан 6 January 2013 в 08:36
1 ответ

Вот ответ, который я придумал:

#
# Cookbook Name:: app-server
# Recipe:: ec2
# 
include_recipe "aws" # http://community.opscode.com/cookbooks/aws

# Assign an Elastic IP to the node on first run
if node[:eip_address].nil?
  # I created two data bags, one for holding AWS credentials,
  # the other for holding on to my IP pool. I pass the names of the 
  # individual bags, in my case, via some environment attributes
  aws = data_bag_item("aws", node[:aws_setup][:credentials])
  eip = data_bag_item("elastic-ips", node[:aws_setup][:eip])

  ip_pool = eip["eip_pool"]

  # Search for servers, and remove used IPs from available list
  search(:node, "chef_environment:#{node.chef_environment} AND role:YOUR_SERVER_ROLE") do |matching_node|
    ip_pool.delete_if {|ip| ip == matching_node[:eip_address]}
  end

  # Attach IP (unless there are no more EIPs in the pool)
  if ip_pool.length <= 0
    Chef::Log.fatal("There are no more EIPs available. Please allocate more and add to the elastics-aps/#{node[:aws_setup][:eip]} data_bag")
  else
    aws_elastic_ip "eip-assignment" do
      aws_access_key aws['aws_access_key']
      aws_secret_access_key aws['aws_secret_access_key']
      ip ip_pool[0]
      action :associate
    end
    # Assign this new IP to the current node, and save
    node.set[:eip_address] = ip_pool[0]
    node.set[:ec2][:public_ipv4] = node[:eip_address]
    node.save
  end
end
0
ответ дан 5 December 2019 в 15:47

Теги

Похожие вопросы