1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
|
require 'etc'
module LeapCli
module Commands
desc 'Apply recipes to a node or set of nodes.'
long_desc 'The FILTER can be the name of a node, service, or tag.'
arg_name 'FILTER'
command [:deploy, :d] do |c|
c.switch :fast, :desc => 'Makes the deploy command faster by skipping some slow steps. A "fast" deploy can be used safely if you recently completed a normal deploy.',
:negatable => false
c.switch :sync, :desc => "Sync files, but don't actually apply recipes.", :negatable => false
c.switch :force, :desc => 'Deploy even if there is a lockfile.', :negatable => false
c.switch :downgrade, :desc => 'Allows deploy to run with an older platform version.', :negatable => false
c.switch :dev, :desc => "Development mode: don't run 'git submodule update' before deploy.", :negatable => false
c.flag :tags, :desc => 'Specify tags to pass through to puppet (overriding the default).',
:arg_name => 'TAG[,TAG]'
c.flag :port, :desc => 'Override the default SSH port.',
:arg_name => 'PORT'
c.flag :ip, :desc => 'Override the default SSH IP address.',
:arg_name => 'IPADDRESS'
c.action do |global,options,args|
if options[:dev] != true
init_submodules
end
nodes = manager.filter!(args, :disabled => false)
if nodes.size > 1
say "Deploying to these nodes: #{nodes.keys.join(', ')}"
if !global[:yes] && !agree("Continue? ")
quit! "OK. Bye."
end
end
environments = nodes.field('environment').uniq
if environments.empty?
environments = [nil]
end
environments.each do |env|
check_platform_pinning(env, global)
end
# compile hiera files for all the nodes in every environment that is
# being deployed and only those environments.
compile_hiera_files(manager.filter(environments), false)
ssh_connect(nodes, connect_options(options)) do |ssh|
ssh.leap.log :checking, 'node' do
ssh.leap.check_for_no_deploy
ssh.leap.assert_initialized
end
ssh.leap.log :synching, "configuration files" do
sync_hiera_config(ssh)
sync_support_files(ssh)
end
ssh.leap.log :synching, "puppet manifests" do
sync_puppet_files(ssh)
end
unless options[:sync]
ssh.leap.log :applying, "puppet" do
ssh.puppet.apply(:verbosity => [LeapCli.log_level,5].min,
:tags => tags(options),
:force => options[:force],
:info => deploy_info,
:downgrade => options[:downgrade]
)
end
end
end
if !Util.exit_status.nil? && Util.exit_status != 0
log :warning, "puppet did not finish successfully."
end
end
end
desc 'Display recent deployment history for a set of nodes.'
long_desc 'The FILTER can be the name of a node, service, or tag.'
arg_name 'FILTER'
command [:history, :h] do |c|
c.flag :port, :desc => 'Override the default SSH port.',
:arg_name => 'PORT'
c.flag :ip, :desc => 'Override the default SSH IP address.',
:arg_name => 'IPADDRESS'
c.switch :last, :desc => 'Show last deploy only',
:negatable => false
c.action do |global,options,args|
if options[:last] == true
lines = 1
else
lines = 10
end
nodes = manager.filter!(args)
ssh_connect(nodes, connect_options(options)) do |ssh|
ssh.leap.history(lines)
end
end
end
private
def forcible_prompt(forced, msg, prompt)
say(msg)
if forced
log :warning, "continuing anyway because of --force"
else
say "hint: use --force to skip this prompt."
quit!("OK. Bye.") unless agree(prompt)
end
end
#
# The currently activated provider.json could have loaded some pinning
# information for the platform. If this is the case, refuse to deploy
# if there is a mismatch.
#
# For example:
#
# "platform": {
# "branch": "develop"
# "version": "1.0..99"
# "commit": "e1d6280e0a8c565b7fb1a4ed3969ea6fea31a5e2..HEAD"
# }
#
def check_platform_pinning(environment, global_options)
provider = manager.env(environment).provider
return unless provider['platform']
if environment.nil? || environment == 'default'
provider_json = 'provider.json'
else
provider_json = 'provider.' + environment + '.json'
end
# can we have json schema verification already?
unless provider.platform.is_a? Hash
bail!('`platform` attribute in #{provider_json} must be a hash (was %s).' % provider.platform.inspect)
end
# check version
if provider.platform['version']
if !Leap::Platform.version_in_range?(provider.platform.version)
forcible_prompt(
global_options[:force],
"The platform is pinned to a version range of '#{provider.platform.version}' "+
"by the `platform.version` property in #{provider_json}, but the platform "+
"(#{Path.platform}) has version #{Leap::Platform.version}.",
"Do you really want to deploy from the wrong version? "
)
end
end
# check branch
if provider.platform['branch']
if !is_git_directory?(Path.platform)
forcible_prompt(
global_options[:force],
"The platform is pinned to a particular branch by the `platform.branch` property "+
"in #{provider_json}, but the platform directory (#{Path.platform}) is not a git repository.",
"Do you really want to deploy anyway? "
)
end
unless provider.platform.branch == current_git_branch(Path.platform)
forcible_prompt(
global_options[:force],
"The platform is pinned to branch '#{provider.platform.branch}' by the `platform.branch` property "+
"in #{provider_json}, but the current branch is '#{current_git_branch(Path.platform)}' " +
"(for directory '#{Path.platform}')",
"Do you really want to deploy from the wrong branch? "
)
end
end
# check commit
if provider.platform['commit']
if !is_git_directory?(Path.platform)
forcible_prompt(
global_options[:force],
"The platform is pinned to a particular commit range by the `platform.commit` property "+
"in #{provider_json}, but the platform directory (#{Path.platform}) is not a git repository.",
"Do you really want to deploy anyway? "
)
end
current_commit = current_git_commit(Path.platform)
Dir.chdir(Path.platform) do
commit_range = assert_run!("git log --pretty='format:%H' '#{provider.platform.commit}'",
"The platform is pinned to a particular commit range by the `platform.commit` property "+
"in #{provider_json}, but git was not able to find commits in the range specified "+
"(#{provider.platform.commit}).")
commit_range = commit_range.split("\n")
if !commit_range.include?(current_commit) &&
provider.platform.commit.split('..').first != current_commit
forcible_prompt(
global_options[:force],
"The platform is pinned via the `platform.commit` property in #{provider_json} " +
"to a commit in the range #{provider.platform.commit}, but the current HEAD " +
"(#{current_commit}) is not in that range.",
"Do you really want to deploy from the wrong commit? "
)
end
end
end
end
def sync_hiera_config(ssh)
ssh.rsync.update do |server|
node = manager.node(server.host)
hiera_file = Path.relative_path([:hiera, node.name])
ssh.leap.log hiera_file + ' -> ' + node.name + ':' + Leap::Platform.hiera_path
{
:source => hiera_file,
:dest => Leap::Platform.hiera_path,
:flags => "-rltp --chmod=u+rX,go-rwx"
}
end
end
#
# sync various support files.
#
def sync_support_files(ssh)
dest_dir = Leap::Platform.files_dir
custom_files = build_custom_file_list
ssh.rsync.update do |server|
node = manager.node(server.host)
files_to_sync = node.file_paths.collect {|path| Path.relative_path(path, Path.provider) }
files_to_sync += custom_files
if files_to_sync.any?
ssh.leap.log(files_to_sync.join(', ') + ' -> ' + node.name + ':' + dest_dir)
{
:chdir => Path.named_path(:files_dir),
:source => ".",
:dest => dest_dir,
:excludes => "*",
:includes => calculate_includes_from_files(files_to_sync, '/files'),
:flags => "-rltp --chmod=u+rX,go-rwx --relative --delete --delete-excluded --copy-links"
}
else
nil
end
end
end
def sync_puppet_files(ssh)
ssh.rsync.update do |server|
ssh.leap.log(Path.platform + '/[bin,tests,puppet] -> ' + server.host + ':' + Leap::Platform.leap_dir)
{
:dest => Leap::Platform.leap_dir,
:source => '.',
:chdir => Path.platform,
:excludes => '*',
:includes => ['/bin', '/bin/**', '/puppet', '/puppet/**', '/tests', '/tests/**'],
:flags => "-rlt --relative --delete --copy-links"
}
end
end
#
# ensure submodules are up to date, if the platform is a git
# repository.
#
def init_submodules
return unless is_git_directory?(Path.platform)
Dir.chdir Path.platform do
assert_run! "git submodule sync"
statuses = assert_run! "git submodule status"
statuses.strip.split("\n").each do |status_line|
if status_line =~ /^[\+-]/
submodule = status_line.split(' ')[1]
log "Updating submodule #{submodule}"
assert_run! "git submodule update --init #{submodule}"
end
end
end
end
#
# converts an array of file paths into an array
# suitable for --include of rsync
#
# if set, `prefix` is stripped off.
#
def calculate_includes_from_files(files, prefix=nil)
return nil unless files and files.any?
# prepend '/' (kind of like ^ for rsync)
includes = files.collect {|file| file =~ /^\// ? file : '/' + file }
# include all sub files of specified directories
includes.size.times do |i|
if includes[i] =~ /\/$/
includes << includes[i] + '**'
end
end
# include all parent directories (required because of --exclude '*')
includes.size.times do |i|
path = File.dirname(includes[i])
while(path != '/')
includes << path unless includes.include?(path)
path = File.dirname(path)
end
end
if prefix
includes.map! {|path| path.sub(/^#{Regexp.escape(prefix)}\//, '/')}
end
return includes
end
def tags(options)
if options[:tags]
tags = options[:tags].split(',')
else
tags = Leap::Platform.default_puppet_tags.dup
end
tags << 'leap_slow' unless options[:fast]
tags.join(',')
end
#
# a provider might have various customization files that should be sync'ed to the server.
# this method builds that list of files to sync.
#
def build_custom_file_list
custom_files = []
Leap::Platform.paths.keys.grep(/^custom_/).each do |path|
if file_exists?(path)
relative_path = Path.relative_path(path, Path.provider)
if dir_exists?(path)
custom_files << relative_path + '/' # rsync needs trailing slash
else
custom_files << relative_path
end
end
end
return custom_files
end
def deploy_info
info = []
info << "user: %s" % Etc.getpwuid(Process.euid).name
if is_git_directory?(Path.platform) && current_git_branch(Path.platform) != 'master'
info << "platform: %s (%s %s)" % [
Leap::Platform.version,
current_git_branch(Path.platform),
current_git_commit(Path.platform)[0..4]
]
else
info << "platform: %s" % Leap::Platform.version
end
if is_git_directory?(LEAP_CLI_BASE_DIR)
info << "leap_cli: %s (%s %s)" % [
LeapCli::VERSION,
current_git_branch(LEAP_CLI_BASE_DIR),
current_git_commit(LEAP_CLI_BASE_DIR)[0..4]
]
else
info << "leap_cli: %s" % LeapCli::VERSION
end
info.join(', ')
end
end
end
|