dtk_crd_parser 0.0.124 → 0.0.125
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/crd_parser/component.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02fb1bd8171d79d8b3051dbf50ad9e64b151bdc24a866478e65e530dd45d37b4
|
4
|
+
data.tar.gz: f2aa2c552925e15d71e63db71e1737871495f6b97b63248b1177265d0ee105a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50e930931e2cafbe8c0ff541775ef2d529f6c1f66373b544d7fda7f661824d2f5ed505fe8c4a7164803d3e011f807ac4c4dfa4bab8883a1e58ddbd838bffc5a4
|
7
|
+
data.tar.gz: 2a0479f37dad9f3fe6e02f1b78577a58db401f001bc8467c4dd9c890543dc92bd551c10c39b510c13b98ab267e657f5f7614d6ff6959482ecdfa51857a7781c7
|
data/lib/crd_parser/component.rb
CHANGED
@@ -23,7 +23,7 @@ module DTK::CrdParser
|
|
23
23
|
name_value = BaseClass::Helper::ClassAndInstanceMixin.destructureActionComponent(component_name)[:attributeName]
|
24
24
|
Logger.new('/proc/1/fd/1').info "Name value: #{name_value}"
|
25
25
|
attributes = []
|
26
|
-
attributes.push(Attribute.create_from_kube("name", name_value))
|
26
|
+
attributes.push(Attribute.create_from_kube("name", name_value, {}))
|
27
27
|
if component_attributes
|
28
28
|
(component_attributes.to_hash || []).each do |attribute_name, attribute_value|
|
29
29
|
attribute_type_info = (component_def.attribute_type_info
|