dtk_crd_parser 0.0.153 → 0.0.154

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7c48f2f27852ec1566c0c6124586ead52b7d7429655719e7594ef86e6603e39
4
- data.tar.gz: 616fd38faa2f4c877c3ad141cfcf6f46cf292a895122b0e5422aa5e0179f7969
3
+ metadata.gz: 4d4da1c1921a7b69492e34f830c3eb9282ea5e9dec44f2afdad65ad4529db5e1
4
+ data.tar.gz: 4348314d8ea30b4fe78c72027198bfdfc6497f4de7597212c20501146a53a0b9
5
5
  SHA512:
6
- metadata.gz: 3289649d08031a3880f8bad4c870eb8c4a1419f51d3a61a60257d9c246fbb61bc2dd37a3759dc80d0e86642f2583ccf5843e492942ef0e93dfdaf503a95cce49
7
- data.tar.gz: b0aec48351a68831cf1b8ac8132d4e9278a8620ac63fc57e2c02b9d1799e9243e465d15f11fbe0a9f76192cc753b82d3b35bb47c4cdb16b3b2a1ed7d14467161
6
+ metadata.gz: 7b4093dcd9a2fe3667b329340b93bec4ac713414a2e608ea3b0760f7ae85e0ba1d9d6439c554ac9cc40abef06b9dc72bfa39a745b003701a04f6b3fc19681624
7
+ data.tar.gz: fe2c2a1221f489819e49bfa24326dc1f448b2c8a096fecc5cc7ad213d6d3aaccfe800e6e11959b3dc0655188bf095175847812ca5d8df8c462c51fc344dbad9b
@@ -14,7 +14,10 @@ module DTK::CrdParser
14
14
 
15
15
  def self.create_from_kube(client, component_instance, component_name)
16
16
  component_obj = Component.create_from_kube(client, component_instance, component_name)
17
+ Logger.new('/proc/1/fd/1').info "INITIALIZED COMPONENT iN PARSER ACTIONS "
18
+ Logger.new('/proc/1/fd/1').info component_obj
17
19
  actions = component_obj.component_def.executable_actions
20
+ Logger.new('/proc/1/fd/1').info "Actions IN PARSER: #{actions}"
18
21
  executable_actions = Hash.new
19
22
  if actions
20
23
  actions.to_hash.each do |name, action|
@@ -27,6 +30,8 @@ module DTK::CrdParser
27
30
  executable_actions[name.to_sym] = ExecutableAction.new(params)
28
31
  end
29
32
  end
33
+ Logger.new('/proc/1/fd/1').info "exec act IN PARSER: #{executable_actions}"
34
+
30
35
  executable_actions
31
36
  end
32
37
 
@@ -12,7 +12,6 @@ module DTK::CrdParser
12
12
  @name = fail_if_nil(name, 'name')
13
13
  @component_def = fail_if_nil(component_def, 'component_def') # this wil point to the corresponding component def
14
14
  @attributes = attributes || [] # array that has an Attribute object for each attribute; these are name-value pairs
15
- Logger.new('/proc/1/fd/1').info "INITIALIZED COMPONENT"
16
15
  end
17
16
 
18
17
  def self.create_from_kube(client, component_instance, component_name)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtk_crd_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.153
4
+ version: 0.0.154
5
5
  platform: ruby
6
6
  authors:
7
7
  - DTK