hiera-consul 0.0.2 → 0.0.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/lib/hiera/backend/consul_backend.rb +18 -10
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 699b0026da73c5c21ccfaa87ba2f9fbadb61cc9f
|
4
|
+
data.tar.gz: 0dfc0d7b9a1fda71d53adc3a7ef7ee30ae28bc35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aadc3b95074ab3826450725b377762d8efd2e2fce003d04daaddf85ada0c1415ede768c07298879cb633eda173008d40522fe1a9029b40665b8e20e0c91575b9
|
7
|
+
data.tar.gz: 025c1139082ae81c42f3eafc560cdc315c75bac6c64402bd7df8b9b19c2d3dcb941f6a875868669a63905fc673f46768596f55f321aedcc5a82a8945097bb518
|
@@ -10,26 +10,34 @@ class Hiera
|
|
10
10
|
require 'uri'
|
11
11
|
|
12
12
|
@config = Config[:consul]
|
13
|
+
|
13
14
|
if ENV['CONSUL_HTTP_ADDR']
|
14
|
-
#
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
@
|
20
|
-
else
|
21
|
-
raise "[hiera-consul] Missing minimum configuration, please check hiera.yaml"
|
15
|
+
#TODO(jsok): Check CONSUL_HTTP_SSL and set scheme appropriately
|
16
|
+
scheme = 'http://'
|
17
|
+
address = ENV['CONSUL_HTTP_ADDR']
|
18
|
+
uri = URI("#{scheme}#{address}")
|
19
|
+
@config[:host] = uri.host
|
20
|
+
@config[:port] = uri.port
|
22
21
|
end
|
23
|
-
@consul.read_timeout = @config[:http_read_timeout] || 10
|
24
|
-
@consul.open_timeout = @config[:http_connect_timeout] || 10
|
25
22
|
|
26
23
|
begin
|
24
|
+
if (@config[:host] && @config[:port])
|
25
|
+
@consul = Net::HTTP.new(@config[:host], @config[:port])
|
26
|
+
@consul.read_timeout = @config[:http_read_timeout] || 10
|
27
|
+
@consul.open_timeout = @config[:http_connect_timeout] || 10
|
28
|
+
#TODO(jsok): Check CONSUL_HTTP_SSL_VERIFY and configure SSL certs
|
29
|
+
else
|
30
|
+
raise "host info not found in CONSUL_HTTP_ADDR or @config[:host,:port]"
|
31
|
+
end
|
32
|
+
|
27
33
|
check_agent
|
28
34
|
Hiera.debug("[hiera-consul] Client configured to connect to #{@consul.address}:#{@consul.port}")
|
35
|
+
|
29
36
|
rescue Exception => e
|
30
37
|
@consul = nil
|
31
38
|
Hiera.warn("[hiera-consul] Skipping backend. Configuration error: #{e}")
|
32
39
|
end
|
40
|
+
|
33
41
|
end
|
34
42
|
|
35
43
|
def lookup(key, scope, order_override, resolution_type)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hiera-consul
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Sokolowski
|
@@ -9,21 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2015-06-22 00:00:00.000000000 Z
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: json
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
12
|
+
dependencies: []
|
27
13
|
description: Hiera backend for looking up KV data stored in Vault
|
28
14
|
email: jonathan.sokolowski@gmail.com
|
29
15
|
executables: []
|