consul-templaterb 1.18.2 → 1.18.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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +5 -5
- data/lib/consul/async/vault_endpoint.rb +1 -1
- data/lib/consul/async/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b12634693cd840c5981486ee1f2daef7b2d6a35ef3df18d726653a23d1d68a1
|
|
4
|
+
data.tar.gz: efad7e3762bf953e5029c3ddc2aa9fa8de5d06728d482f0af0679af69ad49c12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17b0e0a59eb862d07946543bbfc170ac827ffdcdfb1c28e691e03352678abc30b7f195241fa311b66a05c263d42606bcb76d86a49445136d0ec3f7643e4cfafd
|
|
7
|
+
data.tar.gz: dd427f30e6f07cbd908cf1bab8bfd262c4fabd468dabc41fb5502264df8980813f8d40f9257fc02f4b39f14ca835368778bd375539c110734fb04d9a969f2094
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -217,11 +217,11 @@ $ consul-templaterb \\
|
|
|
217
217
|
### Process management and signalisation of configuration files
|
|
218
218
|
|
|
219
219
|
With the `--exec` argument (can be specified multiple times), consul-templaterb will launch
|
|
220
|
-
the process specified when all templates have been generated
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
220
|
+
the process specified when all templates have been generated. When generated file(s) do change,
|
|
221
|
+
a POSIX signal (HUP by default) is sent to the spawned process. If you generate several files
|
|
222
|
+
at the same time, the signal will be sent only once the rendering of all templates is completed,
|
|
223
|
+
so if your process is using several configuration files, all files will be modified and
|
|
224
|
+
consistent before the signal is sent to process.
|
|
225
225
|
|
|
226
226
|
If any template does return nothing (aka use `return nil` in the code of a template),
|
|
227
227
|
consul-templaterb does consider that the template is not ready and will not launch the executable
|
data/lib/consul/async/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: consul-templaterb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.18.
|
|
4
|
+
version: 1.18.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SRE Core Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: em-http-request
|
|
@@ -261,8 +261,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
261
261
|
- !ruby/object:Gem::Version
|
|
262
262
|
version: '0'
|
|
263
263
|
requirements: []
|
|
264
|
-
|
|
265
|
-
rubygems_version: 2.7.7
|
|
264
|
+
rubygems_version: 3.0.3
|
|
266
265
|
signing_key:
|
|
267
266
|
specification_version: 4
|
|
268
267
|
summary: Implementation of Consul template using Ruby and .erb templating language
|