Class: DevLXC::ChefCluster
- Inherits:
-
Object
- Object
- DevLXC::ChefCluster
- Defined in:
- lib/dev-lxc/chef-cluster.rb
Instance Attribute Summary collapse
-
#bootstrap_backend ⇒ Object
readonly
Returns the value of attribute bootstrap_backend.
Instance Method Summary collapse
- #abspath(rootfs_path) ⇒ Object
- #chef_repo ⇒ Object
- #chef_server_config ⇒ Object
- #chef_servers ⇒ Object
- #destroy ⇒ Object
- #destroy_container(type) ⇒ Object
-
#initialize(cluster_config) ⇒ ChefCluster
constructor
A new instance of ChefCluster.
- #run_command(command) ⇒ Object
- #start ⇒ Object
- #status ⇒ Object
- #stop ⇒ Object
Constructor Details
#initialize(cluster_config) ⇒ ChefCluster
Returns a new instance of ChefCluster.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/dev-lxc/chef-cluster.rb', line 7 def initialize(cluster_config) @cluster_config = cluster_config @api_fqdn = @cluster_config["api_fqdn"] @analytics_fqdn = @cluster_config["analytics_fqdn"] @topology = @cluster_config["topology"] @servers = @cluster_config["servers"] @frontends = Array.new @servers.each do |name, config| case @topology when 'open-source', 'standalone' @bootstrap_backend = name if config["role"].nil? when 'tier' @bootstrap_backend = name if config["role"] == "backend" && config["bootstrap"] == true @frontends << name if config["role"] == "frontend" end @analytics_server = name if config["role"] == "analytics" end end |
Instance Attribute Details
#bootstrap_backend ⇒ Object (readonly)
Returns the value of attribute bootstrap_backend.
5 6 7 |
# File 'lib/dev-lxc/chef-cluster.rb', line 5 def bootstrap_backend @bootstrap_backend end |
Instance Method Details
#abspath(rootfs_path) ⇒ Object
44 45 46 47 48 |
# File 'lib/dev-lxc/chef-cluster.rb', line 44 def abspath(rootfs_path) abspath = Array.new chef_servers.each { |cs| abspath << cs.abspath(rootfs_path) unless cs.role == 'analytics' } abspath.compact end |
#chef_repo ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/dev-lxc/chef-cluster.rb', line 50 def chef_repo if @topology == "open-source" puts "Unable to create a chef-repo for an Open Source Chef Server" exit 1 end chef_server = ChefServer.new(@bootstrap_backend, @cluster_config) if ! chef_server.server.defined? puts "The '#{chef_server.server.name}' Chef Server does not exist. Please create it first." exit 1 end puts "Creating chef-repo with pem files and knife.rb in the current directory" FileUtils.mkdir_p("./chef-repo/.chef") knife_rb = %Q( current_dir = File.dirname(__FILE__) chef_server_url "https://#{@api_fqdn}/organizations/ponyville" node_name "rainbowdash" client_key "\#{current_dir}/rainbowdash.pem" validation_client_name "ponyville-validator" validation_key "\#{current_dir}/ponyville-validator.pem" cookbook_path Dir.pwd + "/cookbooks" knife[:chef_repo_path] = Dir.pwd ) IO.write("./chef-repo/.chef/knife.rb", knife_rb) if Dir.glob("#{chef_server.abspath('/root/chef-repo/.chef')}/*.pem").empty? puts "The pem files can not be copied because they do not exist in '#{chef_server.server.name}' Chef Server's `/root/chef-repo/.chef` directory" else FileUtils.cp( Dir.glob("#{chef_server.abspath('/root/chef-repo/.chef')}/*.pem"), "./chef-repo/.chef" ) end end |
#chef_server_config ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/dev-lxc/chef-cluster.rb', line 107 def chef_server_config chef_server_config = %Q(api_fqdn "#{@api_fqdn}"\n) if @topology == 'tier' chef_server_config += %Q( topology "#{@topology}" server "#{@bootstrap_backend}", :ipaddress => "#{@servers[@bootstrap_backend]["ipaddress"]}", :role => "backend", :bootstrap => true backend_vip "#{@bootstrap_backend}", :ipaddress => "#{@servers[@bootstrap_backend]["ipaddress"]}" ) @frontends.each do |frontend_name| chef_server_config += %Q( server "#{frontend_name}", :ipaddress => "#{@servers[frontend_name]["ipaddress"]}", :role => "frontend" ) end end return chef_server_config end |
#chef_servers ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/dev-lxc/chef-cluster.rb', line 26 def chef_servers chef_servers = Array.new chef_servers << ChefServer.new(@bootstrap_backend, @cluster_config) if @topology == "tier" @frontends.each do |frontend_name| chef_servers << ChefServer.new(frontend_name, @cluster_config) end end chef_servers << ChefServer.new(@analytics_server, @cluster_config) if @analytics_server chef_servers end |
#destroy ⇒ Object
98 99 100 101 |
# File 'lib/dev-lxc/chef-cluster.rb', line 98 def destroy puts "Destroying cluster" chef_servers.reverse_each { |cs| cs.destroy } end |
#destroy_container(type) ⇒ Object
103 104 105 |
# File 'lib/dev-lxc/chef-cluster.rb', line 103 def destroy_container(type) chef_servers.each { |cs| cs.destroy_container(type) } end |
#run_command(command) ⇒ Object
84 85 86 |
# File 'lib/dev-lxc/chef-cluster.rb', line 84 def run_command(command) chef_servers.each { |cs| cs.run_command(command) unless cs.role == 'analytics' } end |
#start ⇒ Object
88 89 90 91 |
# File 'lib/dev-lxc/chef-cluster.rb', line 88 def start puts "Starting cluster" chef_servers.each { |cs| cs.start } end |
#status ⇒ Object
38 39 40 41 42 |
# File 'lib/dev-lxc/chef-cluster.rb', line 38 def status puts "Cluster is available at https://#{@api_fqdn}" puts "Analytics is available at https://#{@analytics_fqdn}" if @analytics_fqdn chef_servers.each { |cs| cs.status } end |
#stop ⇒ Object
93 94 95 96 |
# File 'lib/dev-lxc/chef-cluster.rb', line 93 def stop puts "Stopping cluster" chef_servers.reverse_each { |cs| cs.stop } end |