kuber_kit 1.2.4 → 1.2.5
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 +3 -0
- data/lib/kuber_kit/actions/configuration_loader.rb +4 -0
- data/lib/kuber_kit/core/context_helper/context_vars.rb +33 -19
- data/lib/kuber_kit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf57924285ae666f588c17e429237e45bf7fc1666683354a4b55de25592a994f
|
4
|
+
data.tar.gz: f8b7bcf9bcc1d82f9f3489d1d2b6763f281ca0398ef494b78ae11054c4c35019
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed268c5ca27198e9b9842d6f706f83cf83506e9abf8bb95bb23ed97a439b7ae8e9c867c6f88a2ad3a35a9cc2b8e969adbdd88363257e55f02b445f4075df933c
|
7
|
+
data.tar.gz: d2480528964184aadd99b9697898dcbc0da94cb7e8deac75496ea0bf7b47e7013c6c1824f897b4eb46b56b9ba954075b1740bc7ac3bc9ae9bb3d62b60dd2ce64
|
data/CHANGELOG.md
CHANGED
@@ -90,6 +90,10 @@ class KuberKit::Actions::ConfigurationLoader
|
|
90
90
|
configuration_name = first_configurations.configuration_name
|
91
91
|
end
|
92
92
|
|
93
|
+
if configuration_store.count > 1 && configuration_name
|
94
|
+
ui.print_info("Configuration", "Using configuration: #{configuration_name.to_s.cyan}")
|
95
|
+
end
|
96
|
+
|
93
97
|
if configuration_store.count > 1 && configuration_name.nil?
|
94
98
|
options = all_configurations.map(&:configuration_name).map(&:to_s)
|
95
99
|
configuration_name = ui.prompt("Please select configuration name (or set it using -C option)", options)
|
@@ -1,15 +1,21 @@
|
|
1
|
+
require 'ostruct'
|
1
2
|
class KuberKit::Core::ContextHelper::ContextVars
|
2
3
|
attr_reader :parent, :parent_name
|
3
4
|
|
4
5
|
BuildArgUndefined = Class.new(KuberKit::Error)
|
5
6
|
|
6
|
-
def initialize(context_vars, parent_name = nil
|
7
|
+
def initialize(context_vars, parent_name = nil)
|
7
8
|
@context_vars = context_vars
|
8
9
|
@parent_name = parent_name
|
9
|
-
@parent = parent
|
10
10
|
end
|
11
11
|
|
12
|
-
def read(*variable_names)
|
12
|
+
def read(*variable_names, default: nil)
|
13
|
+
dig(*variable_names)
|
14
|
+
rescue BuildArgUndefined
|
15
|
+
return default
|
16
|
+
end
|
17
|
+
|
18
|
+
def dig(*variable_names)
|
13
19
|
result = self
|
14
20
|
variable_names.each do |var|
|
15
21
|
result = result.get_variable_value(var)
|
@@ -18,7 +24,7 @@ class KuberKit::Core::ContextHelper::ContextVars
|
|
18
24
|
end
|
19
25
|
|
20
26
|
def variable_defined?(*variable_names)
|
21
|
-
|
27
|
+
dig(*variable_names)
|
22
28
|
return true
|
23
29
|
rescue BuildArgUndefined
|
24
30
|
return false
|
@@ -29,15 +35,30 @@ class KuberKit::Core::ContextHelper::ContextVars
|
|
29
35
|
raise ArgumentError.new("context args does not accept any arguments")
|
30
36
|
end
|
31
37
|
|
32
|
-
|
38
|
+
dig(name)
|
39
|
+
end
|
40
|
+
|
41
|
+
def keys
|
42
|
+
@context_vars.keys
|
33
43
|
end
|
34
44
|
|
35
45
|
def to_h
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
46
|
+
values = keys.map do |key|
|
47
|
+
value = get_variable_value(key)
|
48
|
+
hash_value = value.respond_to?(:to_h) ? value.to_h : value
|
49
|
+
[key, hash_value]
|
40
50
|
end
|
51
|
+
Hash[values]
|
52
|
+
end
|
53
|
+
|
54
|
+
def to_struct
|
55
|
+
values = keys.map do |key|
|
56
|
+
value = get_variable_value(key)
|
57
|
+
hash_value = value.respond_to?(:to_struct) ? value.to_struct : value
|
58
|
+
[key, hash_value]
|
59
|
+
end
|
60
|
+
hash = Hash[values]
|
61
|
+
OpenStruct.new(hash)
|
41
62
|
end
|
42
63
|
|
43
64
|
def get_variable_value(variable_name)
|
@@ -46,23 +67,16 @@ class KuberKit::Core::ContextHelper::ContextVars
|
|
46
67
|
end
|
47
68
|
|
48
69
|
if value.is_a?(Hash)
|
49
|
-
return self.class.new(value, variable_name
|
70
|
+
return self.class.new(value, format_arg(variable_name))
|
50
71
|
end
|
51
72
|
|
52
73
|
value
|
53
74
|
end
|
54
75
|
|
55
76
|
private
|
77
|
+
|
56
78
|
|
57
79
|
def format_arg(name)
|
58
|
-
|
59
|
-
parent = @parent
|
60
|
-
|
61
|
-
while parent do
|
62
|
-
string = [parent.parent_name, string].compact.join(".")
|
63
|
-
parent = parent.parent
|
64
|
-
end
|
65
|
-
|
66
|
-
string
|
80
|
+
[@parent_name, name].compact.join(".")
|
67
81
|
end
|
68
82
|
end
|
data/lib/kuber_kit/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kuber_kit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Iskander Khaziev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: contracts
|