consul-templaterb 1.2.1 → 1.3.0
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 +12 -0
- data/README.md +1 -1
- data/bin/consul-templaterb +43 -4
- data/lib/consul/async/consul_endpoint.rb +4 -34
- data/lib/consul/async/consul_template.rb +54 -13
- data/lib/consul/async/consul_template_engine.rb +2 -1
- data/lib/consul/async/endpoint.rb +137 -0
- data/lib/consul/async/stats.rb +40 -0
- data/lib/consul/async/vault_endpoint.rb +249 -0
- data/lib/consul/async/version.rb +1 -1
- data/null/ruby-type-inference/ruby-type-inference.mv.db +0 -0
- data/samples/consul-ui/common/header.html.erb +20 -1
- data/samples/consul-ui/consul-keys-ui.html.erb +39 -0
- data/samples/consul-ui/consul-nodes-ui.html.erb +35 -0
- data/samples/consul-ui/consul-services-ui.html.erb +9 -3
- data/samples/consul-ui/consul_keys.json.erb +12 -0
- data/samples/consul-ui/consul_nodes.json.erb +64 -0
- data/samples/consul-ui/{consul_template.json.erb → consul_services.json.erb} +0 -0
- data/samples/consul-ui/css/style.css +80 -4
- data/samples/consul-ui/js/keys.js +129 -0
- data/samples/consul-ui/js/nodes.js +120 -0
- data/samples/consul-ui/js/service.js +53 -179
- data/samples/consul-ui/js/utils.js +347 -0
- data/samples/consul-ui/vendors/highlight/atom-one-dark.css +96 -0
- data/samples/consul-ui/vendors/highlight/highlight.pack.js +2 -0
- data/samples/criteo/vault-test.erb +6 -0
- metadata +17 -3
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.
|
4
|
+
version: 1.3.0
|
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: 2018-
|
11
|
+
date: 2018-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: em-http-request
|
@@ -165,23 +165,37 @@ files:
|
|
165
165
|
- lib/consul/async/consul_template.rb
|
166
166
|
- lib/consul/async/consul_template_engine.rb
|
167
167
|
- lib/consul/async/consul_template_render.rb
|
168
|
+
- lib/consul/async/endpoint.rb
|
168
169
|
- lib/consul/async/process_handler.rb
|
170
|
+
- lib/consul/async/stats.rb
|
169
171
|
- lib/consul/async/utilities.rb
|
172
|
+
- lib/consul/async/vault_endpoint.rb
|
170
173
|
- lib/consul/async/version.rb
|
174
|
+
- null/ruby-type-inference/ruby-type-inference.mv.db
|
171
175
|
- samples/checks.html.erb
|
172
176
|
- samples/common/footer.html.erb
|
173
177
|
- samples/common/header.html.erb
|
174
178
|
- samples/consul-ui/README.md
|
175
179
|
- samples/consul-ui/common/header.html.erb
|
180
|
+
- samples/consul-ui/consul-keys-ui.html.erb
|
181
|
+
- samples/consul-ui/consul-nodes-ui.html.erb
|
176
182
|
- samples/consul-ui/consul-services-ui.html.erb
|
177
|
-
- samples/consul-ui/
|
183
|
+
- samples/consul-ui/consul_keys.json.erb
|
184
|
+
- samples/consul-ui/consul_nodes.json.erb
|
185
|
+
- samples/consul-ui/consul_services.json.erb
|
178
186
|
- samples/consul-ui/css/style.css
|
187
|
+
- samples/consul-ui/js/keys.js
|
188
|
+
- samples/consul-ui/js/nodes.js
|
179
189
|
- samples/consul-ui/js/service.js
|
190
|
+
- samples/consul-ui/js/utils.js
|
191
|
+
- samples/consul-ui/vendors/highlight/atom-one-dark.css
|
192
|
+
- samples/consul-ui/vendors/highlight/highlight.pack.js
|
180
193
|
- samples/consul_template.html.erb
|
181
194
|
- samples/consul_template.json.erb
|
182
195
|
- samples/consul_template.txt.erb
|
183
196
|
- samples/consul_template.xml.erb
|
184
197
|
- samples/criteo/haproxy.cfg.erb
|
198
|
+
- samples/criteo/vault-test.erb
|
185
199
|
- samples/criteo_choregraphies.html.erb
|
186
200
|
- samples/criteo_choregraphies.txt.erb
|
187
201
|
- samples/ha_proxy.cfg.erb
|