knife-hitori 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +22 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +0 -0
- data/Rakefile +7 -0
- data/knife-hitori.gemspec +28 -0
- data/lib/chef/knife/hitori/version.rb +7 -0
- data/lib/chef/knife/hitori_base.rb +11 -0
- data/lib/chef/knife/hitori_config.rb +70 -0
- data/lib/chef/knife/hitori_cook.rb +291 -0
- data/lib/chef/knife/hitori_hello.rb +25 -0
- data/lib/chef/knife/hitori_prepare.rb +47 -0
- data/lib/knife-hitori/interactive_configure.rb +35 -0
- data/lib/knife-hitori/resources/centos_bootstrap.erb +47 -0
- data/lib/knife-hitori/resources/do_cook.sh +37 -0
- data/lib/knife-hitori/resources/knife.erb +34 -0
- data/lib/knife-hitori/resources/knife_ec2.erb +14 -0
- data/lib/knife-hitori.rb +7 -0
- data/refs/Rakefile +272 -0
- data/refs/Vagrantfile +54 -0
- data/refs/run_chef_solo.sh +41 -0
- data/refs/util/create_encrypt_databag.rb +57 -0
- data/refs/util/crypt_file.rb +45 -0
- data/spec/knife/hitori_config_spec.rb +106 -0
- data/spec/knife/hitori_cook_spec.rb +67 -0
- data/spec/knife/hitori_hello_spec.rb +13 -0
- data/spec/knife/hitori_prepare_spec.rb +44 -0
- data/spec/spec_helper.rb +4 -0
- metadata +175 -0
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
.idea/
|
19
|
+
vendor/
|
20
|
+
.chef/
|
21
|
+
|
22
|
+
chef-solo/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Ken Morishita
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
File without changes
|
data/Rakefile
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'chef/knife/hitori/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'knife-hitori'
|
8
|
+
spec.version = Chef::Knife::Hitori::VERSION
|
9
|
+
spec.authors = ['Ken Morishita']
|
10
|
+
spec.email = %w(mokemokechicken@gmail.com)
|
11
|
+
spec.description = %q{knife subcommand}
|
12
|
+
spec.summary = %q{knife subcommand}
|
13
|
+
spec.homepage = ''
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = %w(lib)
|
20
|
+
|
21
|
+
spec.add_dependency 'chef', '~> 11.4'
|
22
|
+
spec.add_dependency 'knife-ec2', '~> 0.6'
|
23
|
+
spec.add_dependency 'erubis', '~> 2.7'
|
24
|
+
|
25
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
26
|
+
spec.add_development_dependency 'rake'
|
27
|
+
spec.add_development_dependency 'rspec'
|
28
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'chef/knife/hitori_base'
|
4
|
+
require 'knife-hitori/interactive_configure'
|
5
|
+
|
6
|
+
class Chef
|
7
|
+
class Knife
|
8
|
+
class HitoriConfig < Knife
|
9
|
+
|
10
|
+
banner 'knife hitori config (options)'
|
11
|
+
|
12
|
+
include HitoriBase
|
13
|
+
include KnifeHitori::InteractiveConfigure
|
14
|
+
CHEF_DIR = '.chef'
|
15
|
+
KNIFE_FILE = 'knife.rb'
|
16
|
+
EC2_FILE = 'ec2.rb'
|
17
|
+
|
18
|
+
option :base_dir,
|
19
|
+
:short => '-b COOKBOOK_ROOT_DIR',
|
20
|
+
:long => '--base COOKBOOK_ROOT_DIR',
|
21
|
+
:description => 'Chef ROOT Dir of cookbooks, data_bags...',
|
22
|
+
:default => Dir::getwd
|
23
|
+
|
24
|
+
deps do
|
25
|
+
require 'erubis'
|
26
|
+
end
|
27
|
+
|
28
|
+
def run
|
29
|
+
create_knife_ruby
|
30
|
+
conf = ask_ec2_config_all(Chef::Config.knife)
|
31
|
+
conf[:template_file] = KnifeHitori::resource('centos_bootstrap.erb')
|
32
|
+
conf[:ssh_port] = 22
|
33
|
+
create_knife_ec2_ruby(conf)
|
34
|
+
end
|
35
|
+
|
36
|
+
def base_dir
|
37
|
+
config[:base_dir]
|
38
|
+
end
|
39
|
+
|
40
|
+
def chef_dir
|
41
|
+
"#{base_dir}/#{CHEF_DIR}"
|
42
|
+
end
|
43
|
+
|
44
|
+
def create_knife_ruby
|
45
|
+
knife_ruby = "#{chef_dir}/#{KNIFE_FILE}"
|
46
|
+
FileUtils.makedirs(chef_dir) unless ::Dir.exists?(chef_dir)
|
47
|
+
if ::File.exists?(knife_ruby)
|
48
|
+
yes_no = input_arg("overwrite knife.rb (#{knife_ruby}) [y/n] ?", 'N') {|x| x =~ /^[yn]$/i}
|
49
|
+
if yes_no.downcase != 'y'
|
50
|
+
ui.info ui.color('cancel overwrite knife.rb', :yellow)
|
51
|
+
return
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
template = KnifeHitori::resource('knife.erb')
|
56
|
+
erubis = Erubis::Eruby.new(::File.read(template))
|
57
|
+
::File.write(knife_ruby, erubis.result({}))
|
58
|
+
ui.info ui.color("write knife.rb in #{knife_ruby}", :green)
|
59
|
+
end
|
60
|
+
|
61
|
+
def create_knife_ec2_ruby(conf)
|
62
|
+
knife_ec2_ruby = "#{chef_dir}/#{EC2_FILE}"
|
63
|
+
template = KnifeHitori::resource('knife_ec2.erb')
|
64
|
+
erubis = Erubis::Eruby.new(::File.read(template))
|
65
|
+
::File.write(knife_ec2_ruby, erubis.result(config: conf))
|
66
|
+
ui.info ui.color("save settings in #{knife_ec2_ruby}", :green)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,291 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'chef/knife/hitori_base'
|
4
|
+
require 'set'
|
5
|
+
|
6
|
+
class Chef
|
7
|
+
class Knife
|
8
|
+
class HitoriCook < Knife
|
9
|
+
|
10
|
+
banner 'knife hitori cook (options)'
|
11
|
+
|
12
|
+
include HitoriBase
|
13
|
+
|
14
|
+
deps do
|
15
|
+
require 'net/ssh'
|
16
|
+
require 'net/scp'
|
17
|
+
require 'fog'
|
18
|
+
end
|
19
|
+
|
20
|
+
option :local,
|
21
|
+
:long => '--local',
|
22
|
+
:description => 'run chef-solo locally'
|
23
|
+
|
24
|
+
option :roles,
|
25
|
+
:short => '-R ROLE1[,ROLE2]',
|
26
|
+
:long => '--roles ROLE1[,ROLE2]',
|
27
|
+
:description => 'override run_list by roles'
|
28
|
+
|
29
|
+
option :recipes,
|
30
|
+
:long => '--recipes RECIPE1[,RECIPE2]',
|
31
|
+
:description => 'override run_list by recipes'
|
32
|
+
|
33
|
+
option :install_chef,
|
34
|
+
:long => '--install-chef',
|
35
|
+
:description => 'Install chef before run cookbook. This process usually have done by hitori-prepare.'
|
36
|
+
|
37
|
+
#########
|
38
|
+
option :tag,
|
39
|
+
:short => '-t TAG_KEY=TAG_VALUE',
|
40
|
+
:long => '--tag TAG_KEY=TAG_VALUE',
|
41
|
+
:description => 'specify servers by EC2 Tag'
|
42
|
+
|
43
|
+
option :groups,
|
44
|
+
:short => '-g GROUP1[,GROUP2]',
|
45
|
+
:long => '--groups GROUP1[,GROUP2]',
|
46
|
+
:description => 'specify servers by Security Group'
|
47
|
+
|
48
|
+
option :name,
|
49
|
+
:short => '-n NAME',
|
50
|
+
:long => '--name NAME',
|
51
|
+
:description => 'specify a server by Instance Name (Name Tag)'
|
52
|
+
|
53
|
+
option :public_ip_address,
|
54
|
+
:long => '--ip IP_ADDRESS',
|
55
|
+
:description => 'specify a server by Public IP Address'
|
56
|
+
|
57
|
+
def run
|
58
|
+
if config[:local]
|
59
|
+
run_local
|
60
|
+
else
|
61
|
+
run_remote
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def run_local
|
66
|
+
Chef::Config[:environment] = nil
|
67
|
+
update_environment(config[:environment]) if config[:environment]
|
68
|
+
Chef::Config[:solo] = true
|
69
|
+
@chef_solo = Chef::Client.new(json_attrs)
|
70
|
+
@chef_solo.run
|
71
|
+
end
|
72
|
+
|
73
|
+
def update_environment(env)
|
74
|
+
Chef::Config[:solo_environment] = env
|
75
|
+
%w(data_bag_path settings_path encrypted_data_bag_secret).each do |name|
|
76
|
+
name = name.to_sym
|
77
|
+
tpl_name = "#{name}_tpl".to_sym
|
78
|
+
if Chef::Config[tpl_name]
|
79
|
+
Chef::Config[name] = sprintf(Chef::Config[tpl_name], env)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def json_attrs
|
85
|
+
attrs = load_settings || {}
|
86
|
+
# Chef::Mixin::DeepMerge.merge(normal_attrs,normal_attrs_to_merge)
|
87
|
+
|
88
|
+
# Update run_list
|
89
|
+
run_list = new_run_list
|
90
|
+
unless run_list.empty?
|
91
|
+
attrs['run_list'] = run_list
|
92
|
+
end
|
93
|
+
#
|
94
|
+
attrs
|
95
|
+
end
|
96
|
+
|
97
|
+
def load_settings
|
98
|
+
path = Chef::Config[:settings_path]
|
99
|
+
if ::File.exists?(path)
|
100
|
+
return JSON.parse(::File.read(path))
|
101
|
+
end
|
102
|
+
ui.warn "#{path} is not found!!" if path
|
103
|
+
{}
|
104
|
+
end
|
105
|
+
|
106
|
+
def new_run_list
|
107
|
+
run_list = []
|
108
|
+
run_list += config[:roles].split(/,/).map{|r| "role[#{r.strip}]"} if config[:roles]
|
109
|
+
run_list += config[:recipes].split(/,/).map{|r| "recipe[#{r.strip}]"} if config[:recipes]
|
110
|
+
run_list
|
111
|
+
end
|
112
|
+
|
113
|
+
|
114
|
+
#########################################################
|
115
|
+
## 盛大なコピペ
|
116
|
+
########################################################
|
117
|
+
def run_remote
|
118
|
+
servers = find_ec2_servers
|
119
|
+
unless servers && !servers.empty?
|
120
|
+
ui.warn ui.color('no server found', :red)
|
121
|
+
return
|
122
|
+
end
|
123
|
+
|
124
|
+
run_list = new_run_list
|
125
|
+
threads = []
|
126
|
+
servers.each_with_index do |server, idx|
|
127
|
+
threads << Thread.new {
|
128
|
+
RunRemoteCook.new(Chef::Config, config, server, :idx => idx, :ui => ui, :run_list => run_list).run
|
129
|
+
}
|
130
|
+
end
|
131
|
+
threads.each do |t|
|
132
|
+
t.join
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
def find_ec2_servers
|
137
|
+
server = nil
|
138
|
+
3.times do
|
139
|
+
server = fetch_server_info
|
140
|
+
break if server && !server.empty?
|
141
|
+
print '.'
|
142
|
+
sleep 5
|
143
|
+
end
|
144
|
+
puts
|
145
|
+
server
|
146
|
+
end
|
147
|
+
|
148
|
+
def fetch_server_info
|
149
|
+
servers = server_info_list
|
150
|
+
|
151
|
+
if config[:tag]
|
152
|
+
tag_key, tag_value = config[:tag].to_s.split(/=/, 2)
|
153
|
+
servers.select {|x| x.tags[tag_key] == tag_value.to_s}
|
154
|
+
elsif config[:groups]
|
155
|
+
g = Set.new(config[:groups].split(/,/))
|
156
|
+
servers.select {|x| (Set.new(x.groups) & g).size > 0}
|
157
|
+
elsif config[:name]
|
158
|
+
servers.select {|x| x.tags['Name'] == config[:name]}
|
159
|
+
elsif config[:public_ip_address]
|
160
|
+
servers.select {|x| x.public_ip_address == config[:public_ip_address]}
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
def server_info_list
|
165
|
+
connection = Fog::Compute.new(
|
166
|
+
:provider => 'AWS',
|
167
|
+
:aws_access_key_id => Chef::Config[:knife][:aws_access_key_id],
|
168
|
+
:aws_secret_access_key => Chef::Config[:knife][:aws_secret_access_key],
|
169
|
+
:region => Chef::Config[:knife][:region]
|
170
|
+
)
|
171
|
+
connection.servers.all.to_a
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
#############################################
|
176
|
+
class RunRemoteCook
|
177
|
+
attr_reader :config, :run_config, :server, :opts, :ui, :knife
|
178
|
+
def initialize(chef_config, run_config, server, opts)
|
179
|
+
@config = chef_config
|
180
|
+
@run_config = run_config
|
181
|
+
@server = server
|
182
|
+
@opts = opts
|
183
|
+
@ui = opts[:ui]
|
184
|
+
@knife = config.knife
|
185
|
+
end
|
186
|
+
|
187
|
+
def run
|
188
|
+
# Install Chef if needed
|
189
|
+
install_chef if run_config[:install_chef]
|
190
|
+
|
191
|
+
# Remove Old Cookbooks
|
192
|
+
console_log "Remove Old Chef Cookbooks in #{server.public_ip_address}\n"
|
193
|
+
mkdir_cmd = <<-EOS
|
194
|
+
[ -e #{knife[:remote_chef_dir]} ] && sudo rm -rf #{knife[:remote_chef_dir]}
|
195
|
+
sudo mkdir -p #{knife[:remote_chef_dir]}
|
196
|
+
sudo chmod 777 #{knife[:remote_chef_dir]}
|
197
|
+
EOS
|
198
|
+
exec_remote(mkdir_cmd)
|
199
|
+
# Upload Cookbooks
|
200
|
+
console_log "Uploading Chef Cookbooks to #{server.public_ip_address}\n"
|
201
|
+
remote_dir = "#{knife[:remote_chef_dir]}/#{File.basename(config[:chef_solo_base_dir])}"
|
202
|
+
chef_solo_filename = 'do_cook.sh'
|
203
|
+
files_info = []
|
204
|
+
files_info << {src: config[:chef_solo_base_dir], dest: knife[:remote_chef_dir], opts: {:recursive => true, :verbose => true}}
|
205
|
+
files_info << {src: KnifeHitori::resource(chef_solo_filename), dest: remote_dir, opts: {:verbose => true}}
|
206
|
+
upload_files(files_info)
|
207
|
+
console_log "Upload is done #{server.public_ip_address}\n"
|
208
|
+
# run chef-solo
|
209
|
+
script = <<-EOS
|
210
|
+
cd #{remote_dir}
|
211
|
+
tr -d '\\r' < #{chef_solo_filename} > .a
|
212
|
+
mv .a #{chef_solo_filename}
|
213
|
+
#{make_run_list_cmd}
|
214
|
+
sudo CHEF_ENV=#{config[:solo_environment]} sh #{chef_solo_filename}
|
215
|
+
EOS
|
216
|
+
exec_remote(script)
|
217
|
+
end
|
218
|
+
|
219
|
+
def install_chef
|
220
|
+
Chef::Log.debug 'install_chef'
|
221
|
+
console_log "Install Chef in #{server.public_ip_address}\n"
|
222
|
+
remote_filename = '/tmp/.install_chef_script'
|
223
|
+
upload_files([{src: knife[:template_file], dest: remote_filename, opts: {:verbose => true}}])
|
224
|
+
exec_remote("sudo sh #{remote_filename}; rm #{remote_filename}")
|
225
|
+
end
|
226
|
+
|
227
|
+
def make_run_list_cmd
|
228
|
+
script = ''
|
229
|
+
if opts[:run_list] && !opts[:run_list].empty?
|
230
|
+
script = <<-EOS
|
231
|
+
[ -d run_list/#{config[:solo_environment]} ] || mkdir -p run_list/#{config[:solo_environment]}
|
232
|
+
echo '#{opts[:run_list].join(',')}' > run_list/#{config[:solo_environment]}/`hostname`
|
233
|
+
EOS
|
234
|
+
end
|
235
|
+
script
|
236
|
+
end
|
237
|
+
|
238
|
+
#######################
|
239
|
+
def bg_color(text)
|
240
|
+
#Background colors
|
241
|
+
#40 Black
|
242
|
+
#41 Red
|
243
|
+
#42 Green
|
244
|
+
#43 Yellow
|
245
|
+
#44 Blue
|
246
|
+
#45 Magenta
|
247
|
+
#46 Cyan
|
248
|
+
#47 White
|
249
|
+
c = 47 - ((opts[:idx].to_i + 3) % 7)
|
250
|
+
"\e[#{c}m#{text}\e[0m"
|
251
|
+
end
|
252
|
+
|
253
|
+
def upload_files(files_info)
|
254
|
+
Net::SCP.start(server.public_ip_address, knife[:ssh_user], :keys => [knife[:identity_file]], :compression => true) do |scp|
|
255
|
+
channels = []
|
256
|
+
files_info.each do |info|
|
257
|
+
channels << scp.upload(info[:src], info[:dest], info[:opts])
|
258
|
+
end
|
259
|
+
channels.each do |ch|
|
260
|
+
ch.wait
|
261
|
+
end
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
265
|
+
def exec_remote(command)
|
266
|
+
Net::SSH.start(server.public_ip_address, knife[:ssh_user], :keys => [knife[:identity_file]]) do |ssh|
|
267
|
+
ssh.open_channel do |ch|
|
268
|
+
ch.request_pty do |pty, success|
|
269
|
+
raise 'Could not obtain pty' unless success
|
270
|
+
end
|
271
|
+
ch.exec(command) do |c, success|
|
272
|
+
abort 'could not execute command' unless success
|
273
|
+
ch.on_data do |c, data|
|
274
|
+
console_log data
|
275
|
+
end
|
276
|
+
|
277
|
+
ch.on_extended_data do |c, type, data|
|
278
|
+
console_log data
|
279
|
+
end
|
280
|
+
end
|
281
|
+
end
|
282
|
+
end
|
283
|
+
end
|
284
|
+
|
285
|
+
def console_log(msg)
|
286
|
+
print bg_color(msg)
|
287
|
+
end
|
288
|
+
end
|
289
|
+
|
290
|
+
end
|
291
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'chef/knife/hitori_base'
|
4
|
+
|
5
|
+
class Chef
|
6
|
+
class Knife
|
7
|
+
class HitoriHello < Knife
|
8
|
+
include HitoriBase
|
9
|
+
banner 'knife hitori hello (options)'
|
10
|
+
|
11
|
+
option :name,
|
12
|
+
:short => '-n name',
|
13
|
+
:long => '--name name',
|
14
|
+
:description => 'specify you name'
|
15
|
+
|
16
|
+
def run
|
17
|
+
puts 'Hello Knife::Hitori.'
|
18
|
+
p Chef::Config
|
19
|
+
puts '-' * 50
|
20
|
+
p config
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'chef/knife/hitori_base'
|
4
|
+
require 'knife-hitori/interactive_configure'
|
5
|
+
|
6
|
+
class Chef
|
7
|
+
class Knife
|
8
|
+
class HitoriPrepare < Knife
|
9
|
+
|
10
|
+
banner 'knife hitori prepare (options)'
|
11
|
+
|
12
|
+
include HitoriBase
|
13
|
+
include KnifeHitori::InteractiveConfigure
|
14
|
+
|
15
|
+
attr_reader :server
|
16
|
+
|
17
|
+
deps do
|
18
|
+
require 'chef/knife/ec2_server_create'
|
19
|
+
end
|
20
|
+
|
21
|
+
def run
|
22
|
+
conf = ask_ec2_config_all(Chef::Config.knife, true)
|
23
|
+
ec2 = setup_knife_ec2(conf)
|
24
|
+
ec2.run
|
25
|
+
@server = ec2.server
|
26
|
+
end
|
27
|
+
|
28
|
+
def setup_knife_ec2(conf)
|
29
|
+
Chef::Knife::Ec2ServerCreate.load_deps
|
30
|
+
args = []
|
31
|
+
args << '--groups=' + conf[:security_groups]
|
32
|
+
args << '--availability-zone=' + conf[:availability_zone]
|
33
|
+
args << '--image=' + conf[:image]
|
34
|
+
args << '--flavor=' + conf[:flavor]
|
35
|
+
|
36
|
+
args << '--ssh-user=' + conf[:ssh_user]
|
37
|
+
args << '--ssh-port=' + conf[:ssh_port].to_s
|
38
|
+
args << '--identity-file=' + conf[:identity_file]
|
39
|
+
args << '--ssh-key=' + conf[:aws_ssh_key_id]
|
40
|
+
args << '--region=' + conf[:region]
|
41
|
+
args << '--template-file=' + conf[:template_file]
|
42
|
+
ui.info args.join(' ')
|
43
|
+
Chef::Knife::Ec2ServerCreate.new(args)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
module KnifeHitori
|
4
|
+
module InteractiveConfigure
|
5
|
+
def ask_ec2_config_all(knife, runtime=false)
|
6
|
+
config = {}
|
7
|
+
config[:aws_access_key_id] = input_arg('aws_access_key_id', knife[:aws_access_key_id], ENV['AWS_ACCESS_KEY_ID']) unless runtime
|
8
|
+
config[:aws_secret_access_key] = input_arg('aws_secret_access_key', knife[:aws_secret_access_key], ENV['AWS_SECRET_ACCESS_KEY']) unless runtime
|
9
|
+
config[:image] = input_arg('ami image', knife[:image], ENV['EC2_AMI_IMAGE'])
|
10
|
+
config[:flavor] = input_arg('flavor', knife[:flavor], ENV['EC2_FLAVOR'], 'm1.small')
|
11
|
+
config[:security_groups] = input_arg('Security Group', knife[:security_groups], ENV['EC2_SECURITY_GROUP'], 'default')
|
12
|
+
config[:ssh_user] = input_arg('ssh_user', knife[:ssh_user], ENV['EC2_SSH_USER'], 'ec2-user')
|
13
|
+
config[:identity_file] = k = input_arg('identity_file(*.pem)', knife[:identity_file], ENV['EC2_PRIVATE_KEY'])
|
14
|
+
config[:aws_ssh_key_id] = input_arg('ssh_key_name', knife[:aws_ssh_key_id], ENV['EC2_SSH_KEY'], File.basename(k || '').sub(/\.pem$/, ''))
|
15
|
+
config[:availability_zone] = input_arg('availability_zone', knife[:availability_zone], ENV['EC2_AVAILABILITY_ZONE'])
|
16
|
+
config[:region] = input_arg('region', knife[:region], config[:availability_zone][0...-1], ENV['EC2_REGION'])
|
17
|
+
config[:identity_file] = File.absolute_path(config[:identity_file]) if config[:identity_file]
|
18
|
+
config[:template_file] = knife[:template_file] if runtime
|
19
|
+
config[:ssh_port] = knife[:ssh_port] if runtime
|
20
|
+
config
|
21
|
+
end
|
22
|
+
|
23
|
+
def input_arg(message, *defaults)
|
24
|
+
input = nil
|
25
|
+
default = defaults.select { |x| !x.to_s.empty? }.first
|
26
|
+
while true
|
27
|
+
print "#{message} [#{default}] ? "
|
28
|
+
input = STDIN.gets.strip
|
29
|
+
input = input.empty? ? default : input
|
30
|
+
break if not block_given? or yield(input)
|
31
|
+
end
|
32
|
+
input
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
bash<<'END_OF_BASH'
|
2
|
+
|
3
|
+
yum -y update
|
4
|
+
yum -y install gcc kernel-devel zlib-devel openssl-devel readline-devel curl-devel libyaml-devel sqlite-devel git make libxml2-devel libxslt-devel wget
|
5
|
+
|
6
|
+
RUBY_VERSION="1.9.3-p429"
|
7
|
+
|
8
|
+
HOME=/root
|
9
|
+
RBENV_ROOT=${HOME}/.rbenv
|
10
|
+
cd $HOME
|
11
|
+
git clone git://github.com/sstephenson/rbenv.git $RBENV_ROOT
|
12
|
+
|
13
|
+
|
14
|
+
RBENV_SH=${RBENV_ROOT}/rbenv.sh
|
15
|
+
cat > $RBENV_SH <<EOM
|
16
|
+
export PATH="${RBENV_ROOT}/bin:\$PATH"
|
17
|
+
export RBENV_DIR=$RBENV_ROOT
|
18
|
+
export RBENV_ROOT=$RBENV_ROOT
|
19
|
+
eval "\$(rbenv init -)"
|
20
|
+
EOM
|
21
|
+
|
22
|
+
|
23
|
+
chmod 755 $RBENV_SH
|
24
|
+
. $RBENV_SH
|
25
|
+
|
26
|
+
|
27
|
+
# install ruby-build
|
28
|
+
mkdir -p ${RBENV_DIR}/plugins
|
29
|
+
git clone git://github.com/sstephenson/ruby-build.git ${RBENV_DIR}/plugins/ruby-build
|
30
|
+
|
31
|
+
# install ruby
|
32
|
+
rbenv rehash
|
33
|
+
sleep 5
|
34
|
+
|
35
|
+
rbenv install $RUBY_VERSION
|
36
|
+
rbenv rehash
|
37
|
+
rbenv global $RUBY_VERSION
|
38
|
+
|
39
|
+
gem update --no-rdoc --no-ri
|
40
|
+
gem install bundler --no-rdoc --no-ri --verbose
|
41
|
+
gem install ohai --no-rdoc --no-ri --verbose
|
42
|
+
gem install chef --no-rdoc --no-ri --verbose
|
43
|
+
|
44
|
+
eval "$(rbenv init -)"
|
45
|
+
|
46
|
+
END_OF_BASH
|
47
|
+
|
@@ -0,0 +1,37 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
# run_chef_solo.sh
|
3
|
+
|
4
|
+
set -e -a
|
5
|
+
|
6
|
+
THIS_DIR=$(cd $(dirname $0); pwd)
|
7
|
+
|
8
|
+
if [ -z "$CHEF_ENV" -a -e ${THIS_DIR}/.chef_env ]; then
|
9
|
+
CHEF_ENV=$(cat ${THIS_DIR}/.chef_env)
|
10
|
+
else
|
11
|
+
CHEF_ENV=${CHEF_ENV:-dev}
|
12
|
+
fi
|
13
|
+
|
14
|
+
cd $THIS_DIR
|
15
|
+
|
16
|
+
CHEF_SOLO_DIR=$THIS_DIR
|
17
|
+
SOLO=${CHEF_SOLO_DIR}/.chef/knife.rb
|
18
|
+
RBENV_FILE=${RBENV_FILE:-/root/.rbenv/rbenv.sh}
|
19
|
+
RUNLIST_FILE=${CHEF_SOLO_DIR}/run_list/${CHEF_ENV}/`hostname`
|
20
|
+
SERVER_JSON=${CHEF_SOLO_DIR}/environments/${CHEF_ENV}/settings.json
|
21
|
+
|
22
|
+
OPTIONS=""
|
23
|
+
if [ "$#" -gt 0 ]; then
|
24
|
+
OPTIONS="$@"
|
25
|
+
elif [ -e $RUNLIST_FILE ]; then
|
26
|
+
OPTIONS="-o $(cat $RUNLIST_FILE)"
|
27
|
+
elif [ -n "$CHEF_ROLE" ]; then
|
28
|
+
OPTIONS="-o role[${CHEF_ROLE}]"
|
29
|
+
fi
|
30
|
+
|
31
|
+
# enable rbenv and chef
|
32
|
+
if [ -e $RBENV_FILE ]; then
|
33
|
+
. $RBENV_FILE
|
34
|
+
fi
|
35
|
+
|
36
|
+
echo chef-solo -c $SOLO -j $SERVER_JSON $OPTIONS
|
37
|
+
chef-solo -c $SOLO -j $SERVER_JSON $OPTIONS
|