wr0ngway-rubber 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. data/CHANGELOG +34 -0
  2. data/COPYING +339 -0
  3. data/README +6 -0
  4. data/TODO +7 -0
  5. data/VERSION +1 -0
  6. data/bin/vulcanize +41 -0
  7. data/generators/vulcanize/USAGE +6 -0
  8. data/generators/vulcanize/templates/apache/config/rubber/deploy-apache.rb +51 -0
  9. data/generators/vulcanize/templates/apache/config/rubber/role/apache/deflate.conf +10 -0
  10. data/generators/vulcanize/templates/apache/config/rubber/role/apache/expires.conf +9 -0
  11. data/generators/vulcanize/templates/apache/config/rubber/role/apache/headers.conf +6 -0
  12. data/generators/vulcanize/templates/apache/config/rubber/role/apache/monit-apache.conf +8 -0
  13. data/generators/vulcanize/templates/apache/config/rubber/role/apache/ports.conf +5 -0
  14. data/generators/vulcanize/templates/apache/config/rubber/role/apache/setenvif.conf +52 -0
  15. data/generators/vulcanize/templates/apache/config/rubber/role/web_tools/tools-apache-vhost.conf +62 -0
  16. data/generators/vulcanize/templates/apache/config/rubber/role/web_tools/tools-apache.auth +7 -0
  17. data/generators/vulcanize/templates/apache/config/rubber/role/web_tools/tools-index.html +30 -0
  18. data/generators/vulcanize/templates/apache/config/rubber/rubber-apache.yml +7 -0
  19. data/generators/vulcanize/templates/apache/templates.yml +1 -0
  20. data/generators/vulcanize/templates/base/Capfile +14 -0
  21. data/generators/vulcanize/templates/base/config/deploy.rb +55 -0
  22. data/generators/vulcanize/templates/base/config/rubber/common/crontab +16 -0
  23. data/generators/vulcanize/templates/base/config/rubber/common/profile.rc +9 -0
  24. data/generators/vulcanize/templates/base/config/rubber/deploy-setup.rb +104 -0
  25. data/generators/vulcanize/templates/base/config/rubber/rubber.yml +241 -0
  26. data/generators/vulcanize/templates/base/lib/tasks/rubber.rake +15 -0
  27. data/generators/vulcanize/templates/base/script/cron-rake +18 -0
  28. data/generators/vulcanize/templates/base/script/cron-runner +18 -0
  29. data/generators/vulcanize/templates/base/script/cron-sh +67 -0
  30. data/generators/vulcanize/templates/base/templates.yml +1 -0
  31. data/generators/vulcanize/templates/complete_mongrel_mysql/config/rubber/role/haproxy/haproxy-mongrel.conf +23 -0
  32. data/generators/vulcanize/templates/complete_mongrel_mysql/config/rubber/role/nginx/nginx-mongrel.conf +113 -0
  33. data/generators/vulcanize/templates/complete_mongrel_mysql/config/rubber/rubber-complete.yml +41 -0
  34. data/generators/vulcanize/templates/complete_mongrel_mysql/templates.yml +6 -0
  35. data/generators/vulcanize/templates/complete_passenger_mysql/config/rubber/role/haproxy/haproxy-passenger.conf +19 -0
  36. data/generators/vulcanize/templates/complete_passenger_mysql/config/rubber/rubber-complete.yml +40 -0
  37. data/generators/vulcanize/templates/complete_passenger_mysql/templates.yml +10 -0
  38. data/generators/vulcanize/templates/cruise/config/rubber/deploy-cruise.rb +72 -0
  39. data/generators/vulcanize/templates/cruise/config/rubber/role/cruise/cruise +40 -0
  40. data/generators/vulcanize/templates/cruise/config/rubber/role/cruise/my.cnf +165 -0
  41. data/generators/vulcanize/templates/cruise/config/rubber/role/cruise/production.rb +8 -0
  42. data/generators/vulcanize/templates/cruise/config/rubber/role/cruise/site_config.rb +76 -0
  43. data/generators/vulcanize/templates/cruise/config/rubber/role/web_tools/cruise-nginx.conf +11 -0
  44. data/generators/vulcanize/templates/cruise/config/rubber/rubber-cruise.yml +18 -0
  45. data/generators/vulcanize/templates/cruise/templates.yml +1 -0
  46. data/generators/vulcanize/templates/haproxy/config/rubber/deploy-haproxy.rb +45 -0
  47. data/generators/vulcanize/templates/haproxy/config/rubber/role/haproxy/haproxy-base.conf +26 -0
  48. data/generators/vulcanize/templates/haproxy/config/rubber/role/haproxy/haproxy-default.conf +8 -0
  49. data/generators/vulcanize/templates/haproxy/config/rubber/role/haproxy/monit-haproxy.conf +9 -0
  50. data/generators/vulcanize/templates/haproxy/config/rubber/role/haproxy/syslog-haproxy.conf +6 -0
  51. data/generators/vulcanize/templates/haproxy/config/rubber/role/haproxy/syslogd-default.conf +17 -0
  52. data/generators/vulcanize/templates/haproxy/config/rubber/role/web_tools/haproxy-nginx.conf +10 -0
  53. data/generators/vulcanize/templates/haproxy/config/rubber/rubber-haproxy.yml +7 -0
  54. data/generators/vulcanize/templates/haproxy/templates.yml +1 -0
  55. data/generators/vulcanize/templates/memcached/config/memcached.yml +28 -0
  56. data/generators/vulcanize/templates/memcached/config/rubber/common/memcached.yml +14 -0
  57. data/generators/vulcanize/templates/memcached/config/rubber/role/memcached/memcached.conf +52 -0
  58. data/generators/vulcanize/templates/memcached/config/rubber/role/memcached/memcached_munin_plugin +249 -0
  59. data/generators/vulcanize/templates/memcached/config/rubber/rubber-memcached.yml +7 -0
  60. data/generators/vulcanize/templates/memcached/templates.yml +1 -0
  61. data/generators/vulcanize/templates/minimal_mysql/templates.yml +7 -0
  62. data/generators/vulcanize/templates/minimal_nodb/templates.yml +6 -0
  63. data/generators/vulcanize/templates/mongrel/config/rubber/deploy-mongrel.rb +75 -0
  64. data/generators/vulcanize/templates/mongrel/config/rubber/role/mongrel/mongrel_cluster.yml +12 -0
  65. data/generators/vulcanize/templates/mongrel/config/rubber/role/mongrel/monit-mongrel.conf +20 -0
  66. data/generators/vulcanize/templates/mongrel/config/rubber/rubber-mongrel.yml +9 -0
  67. data/generators/vulcanize/templates/mongrel/templates.yml +1 -0
  68. data/generators/vulcanize/templates/monit/config/rubber/common/monit-default.conf +15 -0
  69. data/generators/vulcanize/templates/monit/config/rubber/common/monit.conf +251 -0
  70. data/generators/vulcanize/templates/monit/config/rubber/deploy-monit.rb +32 -0
  71. data/generators/vulcanize/templates/monit/config/rubber/role/web_tools/monit-admin-nginx.conf +10 -0
  72. data/generators/vulcanize/templates/monit/config/rubber/rubber-monit.yml +6 -0
  73. data/generators/vulcanize/templates/monit/templates.yml +1 -0
  74. data/generators/vulcanize/templates/munin/config/rubber/common/monit-munin.conf +8 -0
  75. data/generators/vulcanize/templates/munin/config/rubber/common/munin-node.conf +48 -0
  76. data/generators/vulcanize/templates/munin/config/rubber/deploy-munin.rb +46 -0
  77. data/generators/vulcanize/templates/munin/config/rubber/role/web_tools/munin-nginx.conf +8 -0
  78. data/generators/vulcanize/templates/munin/config/rubber/role/web_tools/munin-plugins.conf +31 -0
  79. data/generators/vulcanize/templates/munin/config/rubber/role/web_tools/munin.conf +80 -0
  80. data/generators/vulcanize/templates/munin/config/rubber/rubber-munin.yml +8 -0
  81. data/generators/vulcanize/templates/munin/script/munin/example_mysql_query.rb +57 -0
  82. data/generators/vulcanize/templates/munin/script/munin/example_simple.rb +24 -0
  83. data/generators/vulcanize/templates/munin/templates.yml +1 -0
  84. data/generators/vulcanize/templates/mysql/config/rubber/common/database.yml +11 -0
  85. data/generators/vulcanize/templates/mysql/config/rubber/deploy-mysql.rb +156 -0
  86. data/generators/vulcanize/templates/mysql/config/rubber/role/db/crontab +14 -0
  87. data/generators/vulcanize/templates/mysql/config/rubber/role/db/monit-mysql.cnf +10 -0
  88. data/generators/vulcanize/templates/mysql/config/rubber/role/db/my.cnf +167 -0
  89. data/generators/vulcanize/templates/mysql/config/rubber/role/mysql_slave/mysql_slave_munin_plugin +51 -0
  90. data/generators/vulcanize/templates/mysql/config/rubber/rubber-mysql.yml +46 -0
  91. data/generators/vulcanize/templates/mysql/templates.yml +1 -0
  92. data/generators/vulcanize/templates/mysql_cluster/config/rubber/common/mysql_cluster_migrations.rb +13 -0
  93. data/generators/vulcanize/templates/mysql_cluster/config/rubber/deploy-mysql_cluster.rb +173 -0
  94. data/generators/vulcanize/templates/mysql_cluster/config/rubber/role/mysql_data/my.cnf +15 -0
  95. data/generators/vulcanize/templates/mysql_cluster/config/rubber/role/mysql_mgm/ndb_mgmd.cnf +39 -0
  96. data/generators/vulcanize/templates/mysql_cluster/config/rubber/role/mysql_sql/monit-mysql_cluster_sql.cnf +10 -0
  97. data/generators/vulcanize/templates/mysql_cluster/config/rubber/role/mysql_sql/my.cnf +23 -0
  98. data/generators/vulcanize/templates/mysql_cluster/config/rubber/rubber-mysql_cluster.yml +32 -0
  99. data/generators/vulcanize/templates/mysql_cluster/templates.yml +1 -0
  100. data/generators/vulcanize/templates/mysql_proxy/config/rubber/common/database.yml +16 -0
  101. data/generators/vulcanize/templates/mysql_proxy/config/rubber/common/monit-mysql_proxy.cnf +10 -0
  102. data/generators/vulcanize/templates/mysql_proxy/config/rubber/common/mysql-proxy +153 -0
  103. data/generators/vulcanize/templates/mysql_proxy/config/rubber/common/mysql-proxy.conf +10 -0
  104. data/generators/vulcanize/templates/mysql_proxy/config/rubber/common/mysql-proxy.lua +5 -0
  105. data/generators/vulcanize/templates/mysql_proxy/config/rubber/deploy-mysql_proxy.rb +52 -0
  106. data/generators/vulcanize/templates/mysql_proxy/config/rubber/rubber-mysql_proxy.yml +11 -0
  107. data/generators/vulcanize/templates/mysql_proxy/templates.yml +1 -0
  108. data/generators/vulcanize/templates/nginx/config/rubber/deploy-nginx.rb +45 -0
  109. data/generators/vulcanize/templates/nginx/config/rubber/role/nginx/crontab +9 -0
  110. data/generators/vulcanize/templates/nginx/config/rubber/role/nginx/monit-nginx.conf +8 -0
  111. data/generators/vulcanize/templates/nginx/config/rubber/role/nginx/nginx.conf +42 -0
  112. data/generators/vulcanize/templates/nginx/config/rubber/role/web_tools/nginx-tools.conf +55 -0
  113. data/generators/vulcanize/templates/nginx/config/rubber/role/web_tools/tools-index.html +30 -0
  114. data/generators/vulcanize/templates/nginx/config/rubber/role/web_tools/tools-nginx.auth +7 -0
  115. data/generators/vulcanize/templates/nginx/config/rubber/rubber-nginx.yml +10 -0
  116. data/generators/vulcanize/templates/nginx/templates.yml +1 -0
  117. data/generators/vulcanize/templates/passenger/config/rubber/deploy-passenger.rb +37 -0
  118. data/generators/vulcanize/templates/passenger/config/rubber/role/passenger/munin-passenger-sudoers.conf +6 -0
  119. data/generators/vulcanize/templates/passenger/config/rubber/role/passenger/munin-passenger.conf +47 -0
  120. data/generators/vulcanize/templates/passenger/config/rubber/role/passenger/passenger-apache-vhost.conf +46 -0
  121. data/generators/vulcanize/templates/passenger/config/rubber/role/passenger/passenger.conf +10 -0
  122. data/generators/vulcanize/templates/passenger/config/rubber/rubber-passenger.yml +12 -0
  123. data/generators/vulcanize/templates/passenger/templates.yml +1 -0
  124. data/generators/vulcanize/templates/sphinx/config/rubber/common/sphinx.yml +46 -0
  125. data/generators/vulcanize/templates/sphinx/config/rubber/deploy-sphinx.rb +112 -0
  126. data/generators/vulcanize/templates/sphinx/config/rubber/role/sphinx/crontab +11 -0
  127. data/generators/vulcanize/templates/sphinx/config/rubber/role/sphinx/monit-sphinx.conf +10 -0
  128. data/generators/vulcanize/templates/sphinx/config/rubber/rubber-sphinx.yml +6 -0
  129. data/generators/vulcanize/templates/sphinx/templates.yml +1 -0
  130. data/generators/vulcanize/vulcanize_generator.rb +67 -0
  131. data/lib/capistrano/hostcmd.rb +12 -0
  132. data/lib/rubber/capistrano.rb +1 -0
  133. data/lib/rubber/cloud/aws.rb +305 -0
  134. data/lib/rubber/cloud/base.rb +16 -0
  135. data/lib/rubber/cloud.rb +13 -0
  136. data/lib/rubber/configuration.rb +47 -0
  137. data/lib/rubber/dns/base.rb +69 -0
  138. data/lib/rubber/dns/dyndns.rb +63 -0
  139. data/lib/rubber/dns/nettica.rb +56 -0
  140. data/lib/rubber/dns/zerigo.rb +121 -0
  141. data/lib/rubber/dns.rb +13 -0
  142. data/lib/rubber/environment.rb +161 -0
  143. data/lib/rubber/generator.rb +197 -0
  144. data/lib/rubber/instance.rb +165 -0
  145. data/lib/rubber/recipes/rubber/bundles.rb +28 -0
  146. data/lib/rubber/recipes/rubber/deploy.rb +90 -0
  147. data/lib/rubber/recipes/rubber/instances.rb +348 -0
  148. data/lib/rubber/recipes/rubber/load_balancers.rb +44 -0
  149. data/lib/rubber/recipes/rubber/security_groups.rb +189 -0
  150. data/lib/rubber/recipes/rubber/setup.rb +357 -0
  151. data/lib/rubber/recipes/rubber/static_ips.rb +107 -0
  152. data/lib/rubber/recipes/rubber/utils.rb +203 -0
  153. data/lib/rubber/recipes/rubber/volumes.rb +264 -0
  154. data/lib/rubber/recipes/rubber.rb +89 -0
  155. data/lib/rubber/tasks/rubber.rb +221 -0
  156. data/lib/rubber/util.rb +37 -0
  157. data/lib/rubber.rb +38 -0
  158. data/test/environment_test.rb +118 -0
  159. data/test/generator_test.rb +323 -0
  160. data/test/instance_test.rb +93 -0
  161. data/test/test_helper.rb +4 -0
  162. data/test/util_test.rb +16 -0
  163. metadata +273 -0
data/lib/rubber/dns.rb ADDED
@@ -0,0 +1,13 @@
1
+ require "rubber/dns/base.rb"
2
+
3
+ module Rubber
4
+ module Dns
5
+
6
+ def self.get_provider(provider, env)
7
+ require "rubber/dns/#{provider}"
8
+ clazz = Rubber::Dns.const_get(provider.capitalize)
9
+ return clazz.new(env)
10
+ end
11
+
12
+ end
13
+ end
@@ -0,0 +1,161 @@
1
+ require 'yaml'
2
+ require 'socket'
3
+ require 'delegate'
4
+
5
+ module Rubber
6
+ module Configuration
7
+ # Contains the configuration defined in rubber.yml
8
+ # Handles selecting of correct config values based on
9
+ # the host/role passed into bind
10
+ class Environment
11
+ attr_reader :config_root
12
+ attr_reader :config_files
13
+ attr_reader :config_secret
14
+
15
+ def initialize(config_root)
16
+ @config_root = config_root
17
+ @config_files = ["#{@config_root}/rubber.yml"] + Dir["#{@config_root}/rubber-*.yml"].sort
18
+ @items = {}
19
+ @config_files.each { |file| read_config(file) }
20
+ @config_secret = bind().rubber_secret
21
+ read_config(@config_secret) if @config_secret
22
+ end
23
+
24
+ def read_config(file)
25
+ LOGGER.debug{"Reading rubber configuration from #{file}"}
26
+ if File.exist?(file)
27
+ @items = Environment.combine(@items, YAML.load_file(file) || {})
28
+ end
29
+ end
30
+
31
+ def known_roles
32
+ roles_dir = File.join(@config_root, "role")
33
+ roles = Dir.entries(roles_dir)
34
+ roles.delete_if {|d| d =~ /(^\..*)/}
35
+ end
36
+
37
+ def current_host
38
+ Socket::gethostname.gsub(/\..*/, '')
39
+ end
40
+
41
+ def current_full_host
42
+ Socket::gethostname
43
+ end
44
+
45
+ def bind(roles = nil, host = nil)
46
+ BoundEnv.new(@items, roles, host)
47
+ end
48
+
49
+ # combine old and new into a single value:
50
+ # non-nil wins if other is nil
51
+ # arrays just get unioned
52
+ # hashes also get unioned, but the values of conflicting keys get combined
53
+ # All else, the new value wins
54
+ def self.combine(old, new)
55
+ return old if new.nil?
56
+ return new if old.nil?
57
+ value = old
58
+ if old.is_a?(Hash) && new.is_a?(Hash)
59
+ value = old.clone
60
+ new.each do |nk, nv|
61
+ value[nk] = combine(value[nk], nv)
62
+ end
63
+ elsif old.is_a?(Array) && new.is_a?(Array)
64
+ value = old | new
65
+ else
66
+ value = new
67
+ end
68
+ return value
69
+ end
70
+
71
+ class HashValueProxy < Hash
72
+ attr_reader :global
73
+
74
+ def initialize(global, receiver)
75
+ @global = global
76
+ super()
77
+ replace(receiver)
78
+ end
79
+
80
+ def [](name)
81
+ value = super(name)
82
+ value = global[name] if global && !value
83
+ return expand(value)
84
+ end
85
+
86
+ def each
87
+ each_key do |key|
88
+ yield key, self[key]
89
+ end
90
+ end
91
+
92
+ def method_missing(method_id)
93
+ key = method_id.id2name
94
+ return self[key]
95
+ end
96
+
97
+ def expand_string(val)
98
+ while val =~ /\#\{[^\}]+\}/
99
+ val = eval('%Q{' + val + '}', binding)
100
+ end
101
+ val = true if val =="true"
102
+ val = false if val == "false"
103
+ return val
104
+ end
105
+
106
+ def expand(value)
107
+ val = case value
108
+ when Hash
109
+ HashValueProxy.new(global || self, value)
110
+ when String
111
+ expand_string(value)
112
+ when Enumerable
113
+ value.collect {|v| expand(v) }
114
+ else
115
+ value
116
+ end
117
+ return val
118
+ end
119
+
120
+ end
121
+
122
+ class BoundEnv < HashValueProxy
123
+ attr_reader :roles
124
+ attr_reader :host
125
+ attr_reader :full_host
126
+
127
+ def initialize(global, roles, host)
128
+ @roles = roles
129
+ @host = host
130
+ bound_global = bind_config(global)
131
+ super(nil, bound_global)
132
+ @full_host = "#{host}.#{domain}" rescue nil
133
+ end
134
+
135
+ # Forces role/host overrides into config
136
+ def bind_config(global)
137
+ global = global.clone()
138
+ role_overrides = global.delete("roles") || {}
139
+ host_overrides = global.delete("hosts") || {}
140
+ roles.to_a.each do |role|
141
+ role_overrides[role].each do |k, v|
142
+ global[k] = Environment.combine(global[k], v)
143
+ end if role_overrides[role]
144
+ end
145
+ host_overrides[host].each do |k, v|
146
+ global[k] = Environment.combine(global[k], v)
147
+ end if host_overrides[host]
148
+ return global
149
+ end
150
+
151
+ def method_missing(method_id)
152
+ key = method_id.id2name
153
+ return self[key]
154
+ end
155
+
156
+ end
157
+
158
+ end
159
+
160
+ end
161
+ end
@@ -0,0 +1,197 @@
1
+ require 'erb'
2
+ require 'find'
3
+ require 'fileutils'
4
+
5
+ module Rubber
6
+ module Configuration
7
+
8
+ # Handles selection and transformation of a set of config files
9
+ # based on the host/role they belong to
10
+ class Generator
11
+ attr_accessor :file_pattern
12
+ attr_accessor :no_post
13
+ attr_accessor :force
14
+ attr_accessor :fake_root
15
+ attr_accessor :stop_on_error_cmd
16
+
17
+ def initialize(config_dir, roles, host, options={})
18
+ @config_dir = config_dir
19
+ @roles = roles.to_a.reverse #First roles take precedence
20
+ @host = host || 'no_host'
21
+ @options=options
22
+ end
23
+
24
+ def run
25
+ config_dirs = []
26
+ config_dirs << "#{@config_dir}/common/**/**"
27
+ @roles.sort.each {|role| config_dirs << "#{@config_dir}/role/#{role}/**/**" }
28
+ config_dirs << "#{@config_dir}/host/#{@host}/**/**"
29
+
30
+ pat = Regexp.new(file_pattern) if file_pattern
31
+
32
+ config_dirs.each do |dir|
33
+ Dir[dir].sort.each do |f|
34
+ next if f =~ /\/(CVS|\.svn)\//
35
+ if File.file?(f) && (! pat || pat.match(f))
36
+ LOGGER.info{"Transforming #{f}"}
37
+ begin
38
+ transform(IO.read(f), @options)
39
+ rescue Exception => e
40
+ lines = e.backtrace.grep(/^\(erb\):([0-9]+)/) {|b| Regexp.last_match(1) }
41
+ LOGGER.error{"Transformation failed for #{f}#{':' + lines.first if lines.first}"}
42
+ LOGGER.error e.message
43
+ exit 1
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+
50
+ # Transforms the ERB template given in srcfile and writes the result to
51
+ # dest_file (if not nil) before returning it
52
+ def transform(src_data, options={})
53
+ config = ConfigDescriptor.new
54
+
55
+ # for development/test, if we have a fake root, echo any
56
+ # calls to system
57
+ if fake_root
58
+ class << config
59
+ def system(*args)
60
+ puts ("Not running system command during a fake_root transformation: #{args.inspect}")
61
+ end
62
+ def open(*args)
63
+ if args.first && args.first =~ /^|/
64
+ puts ("Not running open/pipe command during a fake_root transformation: #{args.inspect}")
65
+ else
66
+ super
67
+ end
68
+ end
69
+ alias ` system
70
+ alias exec system
71
+ alias fork system
72
+ end
73
+ end
74
+
75
+ config.options = options
76
+ template = ERB.new(src_data, nil, "-")
77
+ result = template.result(config.get_binding())
78
+
79
+ return if config.skip
80
+
81
+ config_path = config.path
82
+
83
+ # for development/test, if we have a fake root, then send config
84
+ # output there, and also put write_cmd output there
85
+ if fake_root
86
+ config_path = "write_cmd_" + config.write_cmd.gsub(/[^a-z0-9_-]/i, '') if config.write_cmd
87
+ config_path = "#{fake_root}/#{config_path}" if config_path
88
+ end
89
+
90
+ if ! config_path && ! (config.read_cmd && config.write_cmd)
91
+ raise "Transformation requires either a output filename or command"
92
+ end
93
+
94
+ reader = config_path || "|#{config.read_cmd}"
95
+ orig = IO.read(reader) rescue ""
96
+
97
+ # When additive is set we need to only replace between our delimiters
98
+ if config.additive
99
+ additive = ["# start rubber #{@host}", "# end rubber #{@host}"] unless additive.is_a? Array
100
+ pat = /#{config.additive[0]}.*#{config.additive[1]}/m
101
+ new = "#{config.additive[0]}#{result}#{config.additive[1]}"
102
+ if orig =~ pat
103
+ result = orig.gsub(pat, new)
104
+ else
105
+ result = orig + new + "\n"
106
+ end
107
+ end
108
+
109
+ # Only do something if the transformed result is different than what
110
+ # is currently in the destination file
111
+ if orig != result || force
112
+ # create dirs as needed
113
+ FileUtils.mkdir_p(File.dirname(config_path)) if config_path
114
+
115
+ # Write a backup of original
116
+ open("#{config_path}.bak", 'w') { |f| f.write(orig) } if config_path
117
+
118
+ # Write out transformed file
119
+ writer = config_path || "|#{config.write_cmd}"
120
+ open(writer, 'w') do |pipe|
121
+ pipe.write(result)
122
+ end
123
+ if config.write_cmd && ! fake_root && $?.exitstatus != 0
124
+ raise "Config command failed execution: #{config.write_cmd}"
125
+ end
126
+
127
+ # Set file permissions and owner if needed
128
+ FileUtils.chmod(config.perms, config_path) if config.perms && config_path
129
+ FileUtils.chown(config.owner, config.group, config_path) if config_path && (config.owner || config.group)
130
+
131
+ # Run post transform command if needed
132
+ if config.post
133
+ if orig == result
134
+ LOGGER.info("Nothing to do, not running post command")
135
+ elsif no_post
136
+ LOGGER.info("Not running post command as no post specified")
137
+ elsif fake_root
138
+ LOGGER.info("Not running post command as a fake root was given: #{config.post}")
139
+ else
140
+ # this lets us abort a script if a command in the middle of it errors out
141
+ # stop_on_error_cmd = "function error_exit { exit 99; }; trap error_exit ERR"
142
+ config.post = "#{stop_on_error_cmd}\n#{config.post}" if stop_on_error_cmd
143
+
144
+ LOGGER.info{"Transformation executing post config command: #{config.post}"}
145
+ LOGGER.info `#{config.post}`
146
+ if $?.exitstatus != 0
147
+ raise "Post command failed execution: #{config.post}"
148
+ end
149
+ end
150
+ end
151
+ end
152
+ end
153
+
154
+ end
155
+
156
+ # Instances of this object are used accept settings from with
157
+ # a config file for when it is transformed by Generator
158
+ class ConfigDescriptor
159
+ # The output path to write the transformed config file to
160
+ attr_accessor :path
161
+ # The command to use for reading the original config file from (e.g. "crontab -l")
162
+ attr_accessor :read_cmd
163
+ # The command to use for piping the transformed config file to (e.g. "crontab -")
164
+ attr_accessor :write_cmd
165
+ # The command to run after generating the config file if it has changed
166
+ attr_accessor :post
167
+ # The owner the output file should have, e.g. "root"
168
+ attr_accessor :owner
169
+ # The group the output file should have, e.g. "system"
170
+ attr_accessor :group
171
+ # The permissions the output file should have, e.g. 0644 (octal, leading zero is significant)
172
+ attr_accessor :perms
173
+ # Sets transformation to be additive, only replaces between given delimiters, e/g/ additive = ["## start", "## end"]
174
+ attr_accessor :additive
175
+ # Lets one dynamically determine if a given file gets skipped during transformation
176
+ attr_accessor :skip
177
+ # use sudo to write the output file
178
+ # attr_accessor :sudo
179
+ # options passed in through code
180
+ attr_accessor :options
181
+
182
+ def get_binding
183
+ binding
184
+ end
185
+
186
+ def rubber_env()
187
+ Rubber::Configuration.rubber_env
188
+ end
189
+
190
+ def rubber_instances()
191
+ Rubber::Configuration.rubber_instances
192
+ end
193
+
194
+ end
195
+
196
+ end
197
+ end
@@ -0,0 +1,165 @@
1
+ require 'yaml'
2
+
3
+ module Rubber
4
+ module Configuration
5
+
6
+ # Contains the ec2 instance configuration defined in instance.yml
7
+ #
8
+ class Instance
9
+ attr_reader :file, :artifacts
10
+ include Enumerable
11
+
12
+ def initialize(file)
13
+ LOGGER.debug{"Reading rubber instances from #{file}"}
14
+ @file = file
15
+ @items = {}
16
+ @artifacts = {'volumes' => {}, 'static_ips' => {}}
17
+ if ENV['FILTER']
18
+ @filters = ENV['FILTER'].split(/\s*,\s*/)
19
+ end
20
+
21
+ if File.exist?(@file)
22
+ item_list = File.open(@file) { |f| YAML.load(f) }
23
+ if item_list
24
+ item_list.each do |i|
25
+ if i.is_a? InstanceItem
26
+ @items[i.name] = i
27
+ elsif i.is_a? Hash
28
+ @artifacts.merge!(i)
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+
35
+ def save()
36
+ data = []
37
+ data.push(*@items.values)
38
+ data.push(@artifacts)
39
+ File.open(@file, "w") { |f| f.write(YAML.dump(data)) }
40
+ end
41
+
42
+ def [](name)
43
+ @items[name] || @items[name.gsub(/\..*/, '')]
44
+ end
45
+
46
+ # gets the instances for the given role. If options is nil, all roles
47
+ # match, otherwise the role has to have options that match exactly
48
+ def for_role(role_name, options=nil)
49
+ @items.values.find_all {|ic| ic.roles.any? {|r| r.name == role_name && (! options || r.options == options)}}
50
+ end
51
+
52
+ def filtered()
53
+ @items.values.find_all {|ic| ! @filters || @filters.include?(ic.name)}
54
+ end
55
+
56
+ def all_roles()
57
+ @items.collect {|n, i| i.role_names}.flatten.uniq
58
+ end
59
+
60
+ def add(instance_item)
61
+ @items[instance_item.name] = instance_item
62
+ end
63
+
64
+ def remove(name)
65
+ @items.delete(name)
66
+ end
67
+
68
+ def each(&block)
69
+ @items.values.each &block
70
+ end
71
+
72
+ def size
73
+ @items.size
74
+ end
75
+ end
76
+
77
+ # The configuration for a single instance
78
+ class InstanceItem
79
+ attr_reader :name, :domain, :instance_id, :security_groups
80
+ attr_accessor :roles, :zone
81
+ attr_accessor :external_host, :external_ip
82
+ attr_accessor :internal_host, :internal_ip
83
+ attr_accessor :static_ip, :volumes, :partitions
84
+
85
+ def initialize(name, domain, roles, instance_id, security_group_list=[])
86
+ @name = name
87
+ @domain = domain
88
+ @roles = roles
89
+ @instance_id = instance_id
90
+ @security_groups = security_group_list
91
+ end
92
+
93
+ def full_name
94
+ "#@name.#@domain"
95
+ end
96
+
97
+ def role_names()
98
+ roles.collect {|r| r.name}
99
+ end
100
+ end
101
+
102
+ # The configuration for a single role contained in the list
103
+ # of roles in InstanceItem
104
+ class RoleItem
105
+ attr_reader :name, :options
106
+
107
+ def self.expand_role_dependencies(roles, dependency_map, expanded=[])
108
+ roles = Array(roles)
109
+ roles.each do |role|
110
+ unless expanded.include?(role)
111
+ expanded << role
112
+ needed = dependency_map[role]
113
+ expand_role_dependencies(needed, dependency_map, expanded)
114
+ end
115
+ end
116
+ return expanded
117
+ end
118
+
119
+ def self.parse(str)
120
+ data = str.split(':');
121
+ role = Rubber::Configuration::RoleItem.new(data[0])
122
+ if data[1]
123
+ data[1].split(';').each do |pair|
124
+ p = pair.split('=')
125
+ val = case p[1]
126
+ when 'true' then true
127
+ when 'false' then false
128
+ else p[1] end
129
+ role.options[p[0]] = val
130
+ end
131
+ end
132
+ return role
133
+ end
134
+
135
+ def to_s
136
+ str = @name
137
+ @options.each_with_index do |kv, i|
138
+ str += (i == 0 ? ':' : ';')
139
+ str += "#{kv[0]}=#{kv[1]}"
140
+ end
141
+ return str
142
+ end
143
+
144
+ def initialize(name, options={})
145
+ @name = name
146
+ @options = options || {}
147
+ end
148
+
149
+ def eql?(rhs)
150
+ rhs && @name == rhs.name && @options == rhs.options
151
+ end
152
+ alias == eql?
153
+
154
+ def hash()
155
+ @name.hash
156
+ end
157
+
158
+ def <=>(rhs)
159
+ return @name <=> rhs.name
160
+ end
161
+ end
162
+
163
+ end
164
+ end
165
+
@@ -0,0 +1,28 @@
1
+ namespace :rubber do
2
+
3
+ desc "Back up and register an image of the running instance"
4
+ task :bundle do
5
+ if find_servers_for_task(current_task).size > 1
6
+ fatal "Can only bundle a single instance at a time, use FILTER to limit the scope"
7
+ end
8
+ image_name = get_env('IMAGE', "The image name for the bundle", true, Time.now.strftime("%Y%m%d_%H%M"))
9
+ image_id = cloud.create_image(image_name)
10
+ logger.info "Newly registered image is: #{image_id}"
11
+ end
12
+
13
+ desc "De-register and Destroy the image for the given name"
14
+ required_task :destroy_bundle do
15
+ image_id = get_env('IMAGE_ID', 'The id of the image to be destroyed', true)
16
+ cloud.destroy_image(image_id)
17
+ end
18
+
19
+ desc "Describes all your own image bundles"
20
+ required_task :describe_bundles do
21
+ images = cloud.describe_images()
22
+ images.each do |image|
23
+ logger.info "ID: #{image[:id]}"
24
+ logger.info "Location: #{image[:location]}"
25
+ end
26
+ end
27
+
28
+ end
@@ -0,0 +1,90 @@
1
+ namespace :rubber do
2
+
3
+ # Add in some hooks so that we can insert our own hooks at head/tail of
4
+ # hook chain - this is needed for making monit stop before everyone else.
5
+ before "deploy:start", "rubber:pre_start"
6
+ before "deploy:restart", "rubber:pre_restart"
7
+ before "deploy:stop", "rubber:pre_stop"
8
+ on :load do
9
+ after "deploy:start", "rubber:post_start"
10
+ after "deploy:restart", "rubber:post_restart"
11
+ after "deploy:stop", "rubber:post_stop"
12
+ end
13
+
14
+ task :pre_start do
15
+ end
16
+ task :pre_restart do
17
+ end
18
+ task :pre_stop do
19
+ end
20
+ task :post_start do
21
+ end
22
+ task :post_restart do
23
+ end
24
+ task :post_stop do
25
+ end
26
+
27
+ # Don't want to do rubber:config for update_code as that tree isn't official
28
+ # until it is 'committed' by the symlink task (and doing so causes it to run
29
+ # for bootstrap_db which should only config the db config file). However,
30
+ # deploy:migrations doesn't call update, so we need an additional trigger for
31
+ # it
32
+ after "deploy:update", "rubber:config"
33
+ after "deploy:rollback_code", "rubber:config"
34
+ before "deploy:migrate", "rubber:config"
35
+
36
+ desc <<-DESC
37
+ Configures the deployed rails application by running the rubber configuration process
38
+ DESC
39
+ task :config do
40
+ opts = {}
41
+ opts['NO_POST'] = true if ENV['NO_POST']
42
+ opts['FILE'] = ENV['FILE'] if ENV['FILE']
43
+ opts['RUBBER_ENV'] = RUBBER_ENV
44
+ # we need to set rails env as well because when running rake
45
+ # in a rails project, rails gets loaded before the rubber hook gets run
46
+ opts['RAILS_ENV'] = RUBBER_ENV
47
+
48
+ # when running deploy:migrations, we need to run config against release_path
49
+ opts[:deploy_path] = current_release if fetch(:migrate_target, :current).to_sym == :latest
50
+
51
+ run_config(opts)
52
+ end
53
+
54
+ # because we start server as appserver user, but migrate as root, server needs to be able to write logs, etc.
55
+ before "rubber:pre_start", "rubber:setup_app_permissions"
56
+ before "rubber:pre_restart", "rubber:setup_app_permissions"
57
+
58
+ desc <<-DESC
59
+ Sets permissions of files in application directory to be owned by app_user.
60
+ DESC
61
+ task :setup_app_permissions do
62
+ run "find #{shared_path} -name cached-copy -prune -o -print | xargs chown #{rubber_env.app_user}:#{rubber_env.app_user}"
63
+ run "chown -R #{rubber_env.app_user}:#{rubber_env.app_user} #{current_path}/tmp"
64
+ end
65
+
66
+ def run_config(options={})
67
+ path = options.delete(:deploy_path) || current_path
68
+ extra_env = options.keys.inject("") {|all, k| "#{all} #{k}=\"#{options[k]}\""}
69
+
70
+ # Need to do this so we can work with staging instances without having to
71
+ # checkin instance file between create and bootstrap, as well as during a deploy
72
+ if fetch(:push_instance_config, false)
73
+ push_files = [rubber_instances.file] + rubber_cfg.environment.config_files
74
+ push_files.each do |file|
75
+ dest_file = file.sub(/^#{RUBBER_ROOT}\/?/, '')
76
+ put(File.read(file), File.join(path, dest_file), :mode => "+r")
77
+ end
78
+ end
79
+
80
+ # if the user has defined a secret config file, then push it into RUBBER_ROOT/config/rubber
81
+ secret = rubber_cfg.environment.config_secret
82
+ if secret && File.exist?(secret)
83
+ base = rubber_cfg.environment.config_root.sub(/^#{RUBBER_ROOT}\/?/, '')
84
+ put(File.read(secret), File.join(path, base, File.basename(secret)), :mode => "+r")
85
+ end
86
+
87
+ sudo "sh -c 'cd #{path} && #{extra_env} rake rubber:config'"
88
+ end
89
+
90
+ end