capistrano-nomad 0.13.2 → 0.13.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 12eab4261ce503b9d94d9292337e4bb6a654e2764320aa99d72abd6604d66881
4
- data.tar.gz: 36053994204e3ead49f54f4141bc0c481965432abc13ff1249357e8e8fad3bb1
3
+ metadata.gz: 0ffa8354891c995cfc4b2a143d06bc36288f3ede167922dc2bdf3b5e1246281d
4
+ data.tar.gz: 579819253b4ff921c1db9d15edaeaa27b6b1083966ace79aa27e75ec05e85993
5
5
  SHA512:
6
- metadata.gz: 4a31cf6763524c0ba70fc7e559ff799d4d355261af7680d7fc887e5311dc5f9324ceed3ddefafaa5bb69e205b21cb5407b5fc98438e73f1dfdb49cc07c7ff0d3
7
- data.tar.gz: d05b683451f39b8ea6583ce3029afdb8cabb2f66275a4dd3dd3cdee4738f2513e3ac414a8fc5f520b912d064b159689cc9d17b776f215a740fa6877494d2dad2
6
+ metadata.gz: cf1229c6a719bfcd7d18b969a96689207ad871c9300b8b33365c72c706e9ffeca679d600a46dcd8eae7dc941d147d04d7167a93faa55e89cf3ff34de4c617cef
7
+ data.tar.gz: 681e068ea81c408975cecc04ec59be55d187d8836e4ae399e01f38bfe1a3584acfc57b1d3dd3fd01a40793f67263ea516a24e755d70c408b448cac7072abde4d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.13.3]
4
+
5
+ - Support for namespace-level `erb_vars` that are passed to all jobs within that namespace
6
+
3
7
  ## [0.13.2]
4
8
 
5
9
  - Add missing start job task
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capistrano-nomad (0.13.2)
4
+ capistrano-nomad (0.13.3)
5
5
  activesupport (<= 7.0.8)
6
6
  byebug
7
7
  capistrano (~> 3.0)
data/README.md CHANGED
@@ -112,7 +112,7 @@ nomad_job :"traefik-secondary", template: :admin,
112
112
  erb_vars: { role: :secondary },
113
113
  tags: [:traefik]
114
114
 
115
- nomad_namespace :analytics, tags: [:admin] do
115
+ nomad_namespace :analytics, tags: [:admin], erb_vars: { role: :default } do
116
116
  nomad_job :grafana
117
117
  end
118
118
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "capistrano-nomad"
5
- spec.version = "0.13.2"
5
+ spec.version = "0.13.3"
6
6
  spec.authors = ["James Hu"]
7
7
 
8
8
  spec.summary = "Capistrano plugin for deploying and managing Nomad jobs"
@@ -43,9 +43,15 @@ def nomad_job(name, attributes = {})
43
43
 
44
44
  attributes[:tags] ||= []
45
45
 
46
- # Tags added to namespace should be added to all jobs within
47
46
  if (nomad_namespace_options = capistrano_nomad_fetch_namespace_options(namespace: @nomad_namespace))
47
+ # Tags added to namespace should be added to all jobs within
48
48
  attributes[:tags] += nomad_namespace_options[:tags] || []
49
+
50
+ # ERB vars added to namespace should be added to all jobs within
51
+ if (namespace_erb_vars = nomad_namespace_options[:erb_vars])
52
+ attributes[:erb_vars] ||= {}
53
+ attributes[:erb_vars].reverse_merge!(namespace_erb_vars)
54
+ end
49
55
  end
50
56
 
51
57
  nomad_jobs = fetch(:nomad_jobs) || Hash.new { |h, n| h[n] = {} }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-nomad
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.2
4
+ version: 0.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Hu