escli 1.0.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 +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +10 -0
- data/bin/escli +5 -0
- data/bin/setup +8 -0
- data/escli.gemspec +34 -0
- data/lib/canzea/cli/canzea.rb +323 -0
- data/lib/canzea/cli/escli.rb +207 -0
- data/lib/canzea/commands/add-env.rb +64 -0
- data/lib/canzea/commands/apply-config.rb +50 -0
- data/lib/canzea/commands/config-git-commit.rb +78 -0
- data/lib/canzea/commands/ecosystem/ecosystem.rb +66 -0
- data/lib/canzea/commands/ecosystem/resources.rb +82 -0
- data/lib/canzea/commands/gen-user.rb +22 -0
- data/lib/canzea/commands/get-catalog.rb +46 -0
- data/lib/canzea/commands/login.rb +50 -0
- data/lib/canzea/commands/prepare-plan.rb +82 -0
- data/lib/canzea/commands/push-config.rb +283 -0
- data/lib/canzea/commands/register-metadata.rb +79 -0
- data/lib/canzea/commands/remote-bootstrap.rb +38 -0
- data/lib/canzea/commands/remote-run.rb +37 -0
- data/lib/canzea/commands/update-config.rb +26 -0
- data/lib/canzea/config.rb +35 -0
- data/lib/canzea/core/audit.rb +86 -0
- data/lib/canzea/core/prepare-environment.rb +194 -0
- data/lib/canzea/core/registry.rb +191 -0
- data/lib/canzea/core/ssh-base-cmd-class.rb +103 -0
- data/lib/canzea/core/template-runner.rb +41 -0
- data/lib/canzea/core/trace-component.rb +171 -0
- data/lib/canzea/core/trace-runner.rb +108 -0
- data/lib/canzea/environment.rb +6 -0
- data/lib/canzea/helper-run-class.rb +89 -0
- data/lib/canzea/plan-step-class.rb +210 -0
- data/lib/canzea/registry.rb +12 -0
- data/lib/canzea/version.rb +3 -0
- metadata +201 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'logger'
|
3
|
+
require 'pathname'
|
4
|
+
require 'canzea/helper-run-class'
|
5
|
+
require 'canzea/core/trace-component'
|
6
|
+
require 'canzea/core/prepare-environment'
|
7
|
+
|
8
|
+
class RegisterMetadata
|
9
|
+
def initialize ()
|
10
|
+
@basePath = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}/"
|
11
|
+
@log = Logger.new(Canzea::config[:logging_root] + '/plans.log')
|
12
|
+
end
|
13
|
+
|
14
|
+
def do (role, solution, test)
|
15
|
+
|
16
|
+
plan = JSON.parse("{ \"plan\": [ { \"role\": \"#{role}\", \"solution\": \"#{solution}\" } ] }")
|
17
|
+
|
18
|
+
n = Worker.new
|
19
|
+
n.test ( test )
|
20
|
+
|
21
|
+
lines = 1
|
22
|
+
|
23
|
+
cmd = "undefined"
|
24
|
+
|
25
|
+
begin
|
26
|
+
|
27
|
+
plan['plan'].each do |item|
|
28
|
+
|
29
|
+
root = "#{@basePath}/roles/#{item['role']}/#{item['solution']}"
|
30
|
+
if File.exist?(root) == false
|
31
|
+
log "-- ERROR #{root} does not exist!"
|
32
|
+
raise "#{root} does not exist!"
|
33
|
+
end
|
34
|
+
|
35
|
+
# Register the service with Consul, if consul is ready
|
36
|
+
# If metadata.json exists, then use the information to register
|
37
|
+
cmd = "#{@basePath}/roles/#{item['role']}/#{item['solution']}/metadata.json"
|
38
|
+
if File.exist?(cmd)
|
39
|
+
md = File.read(cmd)
|
40
|
+
md = JSON.parse(md)
|
41
|
+
if (md['services'].size() > 0)
|
42
|
+
svc = md['services'][0]
|
43
|
+
|
44
|
+
adef = {
|
45
|
+
"listener"=>svc['listener'],
|
46
|
+
"name" => "#{svc['name']}",
|
47
|
+
"id" => "#{ENV['HOSTNAME']}-#{svc['name']}",
|
48
|
+
"tags"=>[ item['role'] ],
|
49
|
+
"port"=>svc['port']
|
50
|
+
}
|
51
|
+
|
52
|
+
if (svc.has_key? "checks")
|
53
|
+
adef[:check] = svc['checks'][0]
|
54
|
+
end
|
55
|
+
log "-- Registering Service: #{svc['name']}"
|
56
|
+
log "-- #{adef.to_json}"
|
57
|
+
h = HelperRun.new
|
58
|
+
if test
|
59
|
+
log "-- TEST ONLY"
|
60
|
+
else
|
61
|
+
h.run "consul", "register_service", JSON.generate(adef)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
rescue => exception
|
67
|
+
@log.error(cmd)
|
68
|
+
@log.error(exception.to_s)
|
69
|
+
@log.error(exception.backtrace)
|
70
|
+
abort()
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
def log (msg)
|
75
|
+
puts msg
|
76
|
+
@log.info(msg)
|
77
|
+
end
|
78
|
+
|
79
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require "git"
|
2
|
+
require "fileutils"
|
3
|
+
require "pathname"
|
4
|
+
require "canzea/core/ssh-base-cmd-class"
|
5
|
+
|
6
|
+
class RemoteInit
|
7
|
+
def initialize ()
|
8
|
+
@log = Logger.new(Canzea::config[:logging_root] + '/plans.log')
|
9
|
+
end
|
10
|
+
|
11
|
+
def do (publicIp, privateKey)
|
12
|
+
cmd1 = "yum -y install git"
|
13
|
+
|
14
|
+
cmd2 = "(rm -rf ecosystem-catalog && git clone https://gitlab.com/canzea/ecosystem-catalog.git)"
|
15
|
+
|
16
|
+
cmd3 = 'find /root/ecosystem-catalog -name "*.sh" -exec chmod +x {} +'
|
17
|
+
|
18
|
+
cmd4 = '(cd /root/ecosystem-catalog && ./roles/workarounds/ruby/install.sh)'
|
19
|
+
cmd5 = '(cd /root/ecosystem-catalog && ./roles/workarounds/ruby-gems/install.sh)'
|
20
|
+
cmd6 = '(cd /root/ecosystem-catalog && ./roles/workarounds/sshd/configure.sh)'
|
21
|
+
cmd7 = '(cd /root/ecosystem-catalog && ./roles/workarounds/sshd/enable.sh)'
|
22
|
+
cmd8 = '(cd /root/ecosystem-catalog && ./roles/workarounds/root/install.sh)'
|
23
|
+
cmd9 = '(cd /root/ecosystem-catalog && ./roles/workarounds/image-bootstrap/install.sh)'
|
24
|
+
|
25
|
+
remote = RemoteCall.new
|
26
|
+
|
27
|
+
remote.exec publicIp, privateKey, cmd1, "1-9"
|
28
|
+
remote.exec publicIp, privateKey, cmd2, "2-9"
|
29
|
+
remote.exec publicIp, privateKey, cmd3, "3-9"
|
30
|
+
remote.exec publicIp, privateKey, cmd4, "4-9"
|
31
|
+
remote.exec publicIp, privateKey, cmd5, "5-9"
|
32
|
+
remote.exec publicIp, privateKey, cmd6, "6-9"
|
33
|
+
remote.exec publicIp, privateKey, cmd7, "7-9"
|
34
|
+
remote.exec publicIp, privateKey, cmd8, "8-9"
|
35
|
+
remote.exec publicIp, privateKey, cmd9, "9-9"
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require "json"
|
2
|
+
require "git"
|
3
|
+
require "fileutils"
|
4
|
+
require "pathname"
|
5
|
+
require "canzea/core/ssh-base-cmd-class"
|
6
|
+
|
7
|
+
class RemoteRun
|
8
|
+
def doWire(publicIp, privateKey, solution, action, args, ref="")
|
9
|
+
remote = RemoteCall.new
|
10
|
+
remote.exec publicIp, privateKey, "canzea --lifecycle=wire --raw --solution=#{solution} --action=#{action} --args='#{args}'", ref
|
11
|
+
end
|
12
|
+
|
13
|
+
def doTask(publicIp, privateKey, role, solution, task, ref="")
|
14
|
+
remote = RemoteCall.new
|
15
|
+
remote.exec publicIp, privateKey, "canzea --lifecycle=install --role=#{role} --task=#{task} --solution=#{solution}", ref
|
16
|
+
end
|
17
|
+
|
18
|
+
def do(publicIp, privateKey, role, solution, ref="")
|
19
|
+
remote = RemoteCall.new
|
20
|
+
remote.exec publicIp, privateKey, "canzea --lifecycle=install --role=#{role} --solution=#{solution}", ref
|
21
|
+
end
|
22
|
+
|
23
|
+
def doConfigure(publicIp, privateKey, role, solution, ref="")
|
24
|
+
remote = RemoteCall.new
|
25
|
+
remote.exec publicIp, privateKey, "canzea --lifecycle=configure --role=#{role} --solution=#{solution}", ref
|
26
|
+
end
|
27
|
+
|
28
|
+
def doCommand(publicIp, privateKey, command, ref="")
|
29
|
+
remote = RemoteCall.new
|
30
|
+
remote.exec publicIp, privateKey, command, ref
|
31
|
+
end
|
32
|
+
|
33
|
+
def test(publicIp, privateKey, role, solution, ref="")
|
34
|
+
remote = RemoteCall.new
|
35
|
+
remote.exec publicIp, privateKey, "canzea --lifecycle=install --role=#{role} --solution=#{solution} --test", ref
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'json'
|
2
|
+
|
3
|
+
class UpdateConfig
|
4
|
+
|
5
|
+
def do (role, solution, gitRoot)
|
6
|
+
|
7
|
+
steps = {}
|
8
|
+
|
9
|
+
if File.directory? "#{gitRoot}"
|
10
|
+
# write to configure the registration of the service
|
11
|
+
if (File.exists?("#{gitRoot}/configure.json"))
|
12
|
+
steps = JSON.parse(File.read("#{gitRoot}/configure.json"))
|
13
|
+
else
|
14
|
+
steps["steps"] = []
|
15
|
+
end
|
16
|
+
|
17
|
+
conf = {
|
18
|
+
:role => role,
|
19
|
+
:solution => solution
|
20
|
+
}
|
21
|
+
steps["steps"].push(conf)
|
22
|
+
|
23
|
+
File.open("#{gitRoot}/configure.json", 'w') { |file| file.puts(JSON.generate(steps)) }
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'pathname'
|
2
|
+
|
3
|
+
module Canzea
|
4
|
+
|
5
|
+
# Configuration defaults
|
6
|
+
@config = {
|
7
|
+
:log_level => "verbose",
|
8
|
+
:config_location => "#{Dir.home}/.ecosystem-catalog",
|
9
|
+
:catalog_location => "#{Dir.home}/.ecosystem-catalog/catalog",
|
10
|
+
:catalog_git => "https://gitlab.com/canzea/ecosystem-catalog.git",
|
11
|
+
:catalog_branch => "develop",
|
12
|
+
:git_repo => "/opt/cloud-profile",
|
13
|
+
:logging_root => Dir.home,
|
14
|
+
:pwd => Dir.pwd,
|
15
|
+
:consul_tls => false,
|
16
|
+
:consul_tls_ca_file => "/etc/consul.d/ssl/ca.cert",
|
17
|
+
:consul_tls_cert_file => "/etc/consul.d/ssl/consul.cert",
|
18
|
+
:consul_tls_key_file => "/etc/consul.d/ssl/consul.key",
|
19
|
+
:vault_tls_cert_file => "/etc/consul.d/ssl/vault.cert",
|
20
|
+
:vault_tls_key_file => "/etc/consul.d/ssl/vault.key",
|
21
|
+
:track_changes_in_git => false,
|
22
|
+
:canzea_platform_uri => "https://canzea.com/console-app"
|
23
|
+
}
|
24
|
+
@valid_config_keys = @config.keys
|
25
|
+
|
26
|
+
# Configure through hash
|
27
|
+
def self.configure(opts = {})
|
28
|
+
opts.each {|k,v| @config[k.to_sym] = v if @valid_config_keys.include? k.to_sym}
|
29
|
+
end
|
30
|
+
|
31
|
+
def self.config
|
32
|
+
@config
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,86 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'open3'
|
3
|
+
require 'stringio'
|
4
|
+
require 'logger'
|
5
|
+
|
6
|
+
|
7
|
+
class Audit
|
8
|
+
def initialize (_raw)
|
9
|
+
@raw = _raw;
|
10
|
+
end
|
11
|
+
|
12
|
+
def start (id, cmd)
|
13
|
+
self.log( id, cmd, "start", "", 0, "")
|
14
|
+
end
|
15
|
+
|
16
|
+
def complete (id, cmd, status, msecs, result)
|
17
|
+
self.log( id, cmd, "complete", status, msecs, result)
|
18
|
+
end
|
19
|
+
|
20
|
+
def status (id, cmd, status, msecs, result)
|
21
|
+
data = {
|
22
|
+
"message" => {
|
23
|
+
"id" => id,
|
24
|
+
"cmd" => cmd,
|
25
|
+
"task" => "status",
|
26
|
+
"status" => status,
|
27
|
+
"elapsed" => msecs,
|
28
|
+
"result" => result
|
29
|
+
}
|
30
|
+
}
|
31
|
+
context = {
|
32
|
+
"step" => ENV['ES_STEP'],
|
33
|
+
"ref" => ENV['ES_REF'],
|
34
|
+
"role" => ENV['ES_ROLE'],
|
35
|
+
"solution" => ENV['ES_SOLUTION'],
|
36
|
+
"action" => ENV['ES_ACTION']
|
37
|
+
}
|
38
|
+
data['message'][:context] = context
|
39
|
+
|
40
|
+
pputs data.to_json
|
41
|
+
File.open(Canzea::config[:logging_root] + '/audit.log', 'a') { |file| file.puts(data.to_json) }
|
42
|
+
end
|
43
|
+
|
44
|
+
def log (id, cmd, task, status, msecs, result)
|
45
|
+
|
46
|
+
data = {
|
47
|
+
"message" => {
|
48
|
+
"id" => id,
|
49
|
+
"cmd" => cmd,
|
50
|
+
"task" => task,
|
51
|
+
"status" => status,
|
52
|
+
"elapsed" => msecs,
|
53
|
+
"result" => result
|
54
|
+
}
|
55
|
+
}
|
56
|
+
summary = {
|
57
|
+
"message" => {
|
58
|
+
"id" => id,
|
59
|
+
"cmd" => cmd,
|
60
|
+
"task" => task,
|
61
|
+
"status" => status,
|
62
|
+
"elapsed" => msecs
|
63
|
+
}
|
64
|
+
}
|
65
|
+
context = {
|
66
|
+
"step" => ENV['ES_STEP'],
|
67
|
+
"ref" => ENV['ES_REF'],
|
68
|
+
"role" => ENV['ES_ROLE'],
|
69
|
+
"solution" => ENV['ES_SOLUTION'],
|
70
|
+
"action" => ENV['ES_ACTION']
|
71
|
+
}
|
72
|
+
data['message'][:context] = context
|
73
|
+
summary['message'][:context] = context
|
74
|
+
|
75
|
+
pputs summary.to_json
|
76
|
+
|
77
|
+
File.open(Canzea::config[:logging_root] + '/audit.log', 'a') { |file| file.puts(data.to_json) }
|
78
|
+
end
|
79
|
+
|
80
|
+
def pputs (s)
|
81
|
+
if (@raw == false)
|
82
|
+
puts "#{s}"
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
@@ -0,0 +1,194 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'logger'
|
3
|
+
require 'net/http'
|
4
|
+
require "canzea/core/trace-runner"
|
5
|
+
require "canzea/core/registry"
|
6
|
+
|
7
|
+
|
8
|
+
class PrepareEnvironment
|
9
|
+
def initialize (_raw = false)
|
10
|
+
@raw = _raw;
|
11
|
+
end
|
12
|
+
|
13
|
+
def addToEnv (envFile)
|
14
|
+
log = Logger.new(Canzea::config[:logging_root] + '/plans.log')
|
15
|
+
|
16
|
+
r = Registry.new
|
17
|
+
|
18
|
+
file = File.read(envFile)
|
19
|
+
|
20
|
+
serviceLookups = JSON.parse(file)
|
21
|
+
|
22
|
+
if (serviceLookups.has_key?('environment'))
|
23
|
+
serviceLookups['environment'].each do |svc|
|
24
|
+
|
25
|
+
pputs "-- Setting...#{svc['name']}"
|
26
|
+
log.info("Setting: " + svc['name'])
|
27
|
+
ENV.store(svc['name'], svc['value'])
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
serviceLookups['keyvalues'].each do |svc|
|
32
|
+
|
33
|
+
pputs("-- Looking up...#{svc['name']}")
|
34
|
+
|
35
|
+
uri = URI.parse(ENV["CONSUL_URL"] + '/v1/kv/' + svc['name'])
|
36
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
37
|
+
|
38
|
+
if (Canzea::config[:consul_tls])
|
39
|
+
pemCert = File.read(Canzea::config[:consul_tls_cert_file])
|
40
|
+
pemKey = File.read(Canzea::config[:consul_tls_key_file])
|
41
|
+
|
42
|
+
http.use_ssl = true
|
43
|
+
http.ca_file = Canzea::config[:consul_tls_ca_file]
|
44
|
+
http.cert = OpenSSL::X509::Certificate.new(pemCert)
|
45
|
+
http.key = OpenSSL::PKey::RSA.new(pemKey)
|
46
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
47
|
+
# http.set_debug_output($stdout)
|
48
|
+
http.ssl_version = :SSLv23
|
49
|
+
end
|
50
|
+
request = Net::HTTP::Get.new(uri.request_uri)
|
51
|
+
resp = http.request(request)
|
52
|
+
|
53
|
+
if Integer(resp.code) != 200
|
54
|
+
log.warn("KEY VALUE NOT FOUND! " + svc['name'])
|
55
|
+
puts "-- KEY VALUE NOT FOUND! " + svc['name']
|
56
|
+
abort("Problem, response code #{resp.code}")
|
57
|
+
end
|
58
|
+
|
59
|
+
result = JSON.parse(resp.body)
|
60
|
+
s = Base64.decode64(result[0]["Value"])
|
61
|
+
|
62
|
+
if (s.nil? == false)
|
63
|
+
# puts s
|
64
|
+
|
65
|
+
key = "" + svc['name'].upcase
|
66
|
+
key = key.gsub(/\./, '').gsub(/-/, '_').gsub(/\//, '_')
|
67
|
+
log.info("Setting: " + key + " : " + s)
|
68
|
+
ENV.store(key, s)
|
69
|
+
else
|
70
|
+
log.warn("KEY VALUE NOT FOUND! " + svc['name'])
|
71
|
+
pputs "-- KEY VALUE NOT FOUND! " + svc['name']
|
72
|
+
abort()
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
serviceLookups['services'].each do |svc|
|
78
|
+
|
79
|
+
pputs "-- Looking up...#{svc['name']}"
|
80
|
+
|
81
|
+
uri = URI.parse(ENV["CONSUL_URL"] + '/v1/catalog/service/' + svc['name'])
|
82
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
83
|
+
|
84
|
+
if (Canzea::config[:consul_tls])
|
85
|
+
pemCert = File.read(Canzea::config[:consul_tls_cert_file])
|
86
|
+
pemKey = File.read(Canzea::config[:consul_tls_key_file])
|
87
|
+
|
88
|
+
http.use_ssl = true
|
89
|
+
http.ca_file = Canzea::config[:consul_tls_ca_file]
|
90
|
+
http.cert = OpenSSL::X509::Certificate.new(pemCert)
|
91
|
+
http.key = OpenSSL::PKey::RSA.new(pemKey)
|
92
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
93
|
+
# http.set_debug_output($stdout)
|
94
|
+
http.ssl_version = :SSLv23
|
95
|
+
end
|
96
|
+
request = Net::HTTP::Get.new(uri.request_uri)
|
97
|
+
resp = http.request(request)
|
98
|
+
|
99
|
+
services = JSON.parse(resp.body)
|
100
|
+
|
101
|
+
if (services.nil? == false)
|
102
|
+
|
103
|
+
services.each { | s |
|
104
|
+
|
105
|
+
key = "" + svc['name'].upcase + "_ADDRESS"
|
106
|
+
key = key.gsub(/\./, '')
|
107
|
+
log.info("Setting: " + key + " : " + s["ServiceAddress"])
|
108
|
+
ENV.store(key, s["ServiceAddress"])
|
109
|
+
|
110
|
+
key = "" + svc['name'].upcase + "_PORT"
|
111
|
+
key = key.gsub(/\./, '')
|
112
|
+
log.info("Setting: " + key + " : " + String(s["ServicePort"]))
|
113
|
+
ENV.store(key, String(s["ServicePort"]))
|
114
|
+
|
115
|
+
key = "" + svc['name'].upcase + "_URL"
|
116
|
+
key = key.gsub(/\./, '')
|
117
|
+
val = "http://" + s["ServiceAddress"] + ":" + String(s["ServicePort"])
|
118
|
+
log.info("Setting: " + key + " : " + val)
|
119
|
+
ENV.store(key, val)
|
120
|
+
}
|
121
|
+
else
|
122
|
+
log.warn("SERVICE NOT FOUND! " + svc['name'])
|
123
|
+
pputs "-- SERVICE NOT FOUND! " + svc['name']
|
124
|
+
abort()
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
serviceLookups['secrets'].each do |svc|
|
129
|
+
|
130
|
+
pputs "-- Looking up secret...#{svc['name']}"
|
131
|
+
|
132
|
+
uri = URI.parse(ENV["VAULT_URL"] + '/v1/secret/' + svc['name'])
|
133
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
134
|
+
|
135
|
+
if (Canzea::config[:consul_tls])
|
136
|
+
|
137
|
+
pemCert = File.read(Canzea::config[:vault_tls_cert_file])
|
138
|
+
pemKey = File.read(Canzea::config[:vault_tls_key_file])
|
139
|
+
|
140
|
+
http.use_ssl = true
|
141
|
+
http.ca_file = Canzea::config[:consul_tls_ca_file]
|
142
|
+
http.cert = OpenSSL::X509::Certificate.new(pemCert)
|
143
|
+
http.key = OpenSSL::PKey::RSA.new(pemKey)
|
144
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
145
|
+
# http.set_debug_output($stdout)
|
146
|
+
http.ssl_version = :SSLv23
|
147
|
+
end
|
148
|
+
|
149
|
+
request = Net::HTTP::Get.new(uri.request_uri)
|
150
|
+
|
151
|
+
request['X-Vault-Token'] = ENV["VAULT_TOKEN"]
|
152
|
+
request['Content-type'] = 'application/json'
|
153
|
+
|
154
|
+
resp = http.request(request)
|
155
|
+
|
156
|
+
# puts resp.body
|
157
|
+
|
158
|
+
if (Integer(resp.code) == 200)
|
159
|
+
|
160
|
+
data = JSON.parse(resp.body)
|
161
|
+
|
162
|
+
s = data['data']
|
163
|
+
s.each do |k|
|
164
|
+
key = "" + svc['name'].upcase + "_" + k[0].upcase
|
165
|
+
key = key.gsub(/\./, '').gsub(/-/, '_').gsub(/\//, '_')
|
166
|
+
|
167
|
+
log.info("Setting: " + key)
|
168
|
+
if k[1].is_a? String
|
169
|
+
ENV.store(key, k[1])
|
170
|
+
end
|
171
|
+
end
|
172
|
+
else
|
173
|
+
log.warn( "SECRET NOT FOUND! " + svc['name'])
|
174
|
+
log.warn( "ERROR FROM VAULT " + resp.body)
|
175
|
+
pputs "-- SECRET NOT FOUND! " + svc['name']
|
176
|
+
pputs "-- ERROR FROM VAULT " + resp.body
|
177
|
+
abort()
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
def print ()
|
183
|
+
ENV.each_pair { |name,value|
|
184
|
+
puts name + " = " + value
|
185
|
+
}
|
186
|
+
end
|
187
|
+
|
188
|
+
def pputs (s)
|
189
|
+
if (@raw == false)
|
190
|
+
puts "-- #{s}"
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
end
|