capistrano-nomad 0.2.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1d44671f9ed79b03419c3de79d4b938652eb3f35f3553450f4e5118fadeb596
|
4
|
+
data.tar.gz: 3a6afdc265f7f434774f960e1aa2a9c5950cd8da00c02dbf21407c752ec2bb22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 511bf835646bbfb0f5ec7bc0fe5dd575cd34b4a72573d73457ce07830284ad01260521bbdb2cc8a829e1ad535d78cbece3d041ed32f546efbd274090934523db
|
7
|
+
data.tar.gz: d576b13a85867cc3916dd32a7a26ece7aecdda4b1b14bc20a451f24a7bbeb48f3aef1144d3952e9e5ad831f06c33cb609fd41390bb40d2a29e0754254c48f098
|
data/Gemfile.lock
CHANGED
data/capistrano-nomad.gemspec
CHANGED
@@ -61,16 +61,18 @@ def capistrano_nomad_build_docker_image(image_type, path, *args)
|
|
61
61
|
capistrano_nomad_build_docker_image_alias(image_type, git_commit_id),
|
62
62
|
capistrano_nomad_build_docker_image_alias(image_type, "latest"),
|
63
63
|
"trunk/#{fetch(:stage)}/#{image_type}:latest",
|
64
|
-
]
|
65
|
-
|
66
|
-
|
64
|
+
]
|
65
|
+
.compact
|
66
|
+
.each do |tag|
|
67
|
+
args << "--tag #{tag}"
|
68
|
+
end
|
67
69
|
|
68
70
|
# If any of these files exist then we're in the middle of rebase so we should interrupt
|
69
|
-
if ["rebase-merge", "rebase-apply"].any? { |f| File.exist?("#{
|
71
|
+
if ["rebase-merge", "rebase-apply"].any? { |f| File.exist?("#{capistrano_nomad_git.dir.path}/.git/#{f}") }
|
70
72
|
raise StandardError, "still in the middle of git rebase, interrupting docker image build"
|
71
73
|
end
|
72
74
|
|
73
|
-
system "docker build #{args.join(' ')}
|
75
|
+
system "docker build #{args.join(' ')} .#{capistrano_nomad_root.join(path)}"
|
74
76
|
end
|
75
77
|
end
|
76
78
|
|
@@ -36,9 +36,6 @@ class NomadErbNamespace
|
|
36
36
|
end
|
37
37
|
|
38
38
|
def capistrano_nomad_build_file_path(parent_path, basename, namespace: nil)
|
39
|
-
# Remove initial slash if it exists
|
40
|
-
parent_path = parent_path[1..] if parent_path[0] == "/"
|
41
|
-
|
42
39
|
segments = [parent_path]
|
43
40
|
segments << namespace if namespace
|
44
41
|
segments << "#{basename}.hcl"
|
@@ -54,19 +51,27 @@ def capistrano_nomad_build_base_var_file_path(*args)
|
|
54
51
|
capistrano_nomad_build_file_path(fetch(:nomad_var_files_path), *args)
|
55
52
|
end
|
56
53
|
|
57
|
-
def
|
58
|
-
local_path =
|
54
|
+
def capistrano_nomad_build_local_path(path, *args)
|
55
|
+
local_path = ".#{capistrano_nomad_root.join(path)}"
|
59
56
|
|
60
57
|
# Determine if it has .erb appended or not
|
61
58
|
[local_path, "#{local_path}.erb"].find { |path| File.exist?(path) }
|
62
59
|
end
|
63
60
|
|
61
|
+
def capistrano_nomad_build_local_job_path(name, *args)
|
62
|
+
capistrano_nomad_build_local_path(capistrano_nomad_build_base_job_path(name, *args))
|
63
|
+
end
|
64
|
+
|
65
|
+
def capistrano_nomad_build_local_var_file_path(name, *args)
|
66
|
+
capistrano_nomad_build_local_path(capistrano_nomad_build_base_var_file_path(name, *args))
|
67
|
+
end
|
68
|
+
|
64
69
|
def capistrano_nomad_build_release_job_path(*args)
|
65
|
-
"#{release_path}
|
70
|
+
"#{release_path}#{capistrano_nomad_build_base_job_path(*args)}"
|
66
71
|
end
|
67
72
|
|
68
73
|
def capistrano_nomad_build_release_var_file_path(*args)
|
69
|
-
"#{release_path}
|
74
|
+
"#{release_path}#{capistrano_nomad_build_base_var_file_path(*args)}"
|
70
75
|
end
|
71
76
|
|
72
77
|
def capistrano_nomad_execute_nomad_command(*args)
|
@@ -158,7 +163,7 @@ def capistrano_nomad_build_jobs_docker_images(names, *args)
|
|
158
163
|
|
159
164
|
return false if image_types.empty?
|
160
165
|
|
161
|
-
image_types.each { |i| capistrano_nomad_build_docker_image_for_type(i
|
166
|
+
image_types.each { |i| capistrano_nomad_build_docker_image_for_type(i) }
|
162
167
|
end
|
163
168
|
|
164
169
|
def capistrano_nomad_push_jobs_docker_images(names, *args)
|
@@ -166,7 +171,7 @@ def capistrano_nomad_push_jobs_docker_images(names, *args)
|
|
166
171
|
|
167
172
|
return false if image_types.empty?
|
168
173
|
|
169
|
-
image_types.each { |i| capistrano_nomad_push_docker_image_for_type(i
|
174
|
+
image_types.each { |i| capistrano_nomad_push_docker_image_for_type(i) }
|
170
175
|
end
|
171
176
|
|
172
177
|
def capistrano_nomad_assemble_jobs_docker_images(names, *args)
|
@@ -180,7 +185,7 @@ def capistrano_nomad_upload_jobs(names, *args)
|
|
180
185
|
|
181
186
|
uniq_var_files.each do |var_file|
|
182
187
|
capistrano_nomad_upload_file(
|
183
|
-
local_path:
|
188
|
+
local_path: capistrano_nomad_build_local_var_file_path(var_file, *args),
|
184
189
|
remote_path: capistrano_nomad_build_release_var_file_path(var_file, *args),
|
185
190
|
)
|
186
191
|
end
|
@@ -196,7 +201,7 @@ def capistrano_nomad_upload_jobs(names, *args)
|
|
196
201
|
file_basename = nomad_job_options[:template] || name
|
197
202
|
|
198
203
|
capistrano_nomad_upload_file(
|
199
|
-
local_path:
|
204
|
+
local_path: capistrano_nomad_build_local_job_path(file_basename, *args),
|
200
205
|
remote_path: capistrano_nomad_build_release_job_path(name, *args),
|
201
206
|
erb_vars: erb_vars,
|
202
207
|
)
|