hybrid_platforms_conductor 33.9.2 → 33.9.4

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.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +15 -0
  3. data/bin/last_deploys +3 -4
  4. data/docs/gen/mermaid/README.md-0.png +0 -0
  5. data/docs/gen/mermaid/docs/executables/check-node.md-0.png +0 -0
  6. data/docs/gen/mermaid/docs/executables/deploy.md-0.png +0 -0
  7. data/docs/gen/mermaid/docs/executables/free_ips.md-0.png +0 -0
  8. data/docs/gen/mermaid/docs/executables/free_veids.md-0.png +0 -0
  9. data/docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png +0 -0
  10. data/docs/gen/mermaid/docs/executables/last_deploys.md-0.png +0 -0
  11. data/docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png +0 -0
  12. data/docs/gen/mermaid/docs/executables/report.md-0.png +0 -0
  13. data/docs/gen/mermaid/docs/executables/run.md-0.png +0 -0
  14. data/docs/gen/mermaid/docs/executables/setup.md-0.png +0 -0
  15. data/docs/gen/mermaid/docs/executables/ssh_config.md-0.png +0 -0
  16. data/docs/gen/mermaid/docs/executables/test.md-0.png +0 -0
  17. data/lib/hybrid_platforms_conductor/actions_executor.rb +2 -2
  18. data/lib/hybrid_platforms_conductor/common_config_dsl/file_system_tests.rb +2 -2
  19. data/lib/hybrid_platforms_conductor/config.rb +1 -0
  20. data/lib/hybrid_platforms_conductor/deployer.rb +12 -12
  21. data/lib/hybrid_platforms_conductor/executable.rb +1 -1
  22. data/lib/hybrid_platforms_conductor/hpc_plugins/cmdb/host_ip.rb +21 -7
  23. data/lib/hybrid_platforms_conductor/hpc_plugins/cmdb/platform_handlers.rb +2 -2
  24. data/lib/hybrid_platforms_conductor/hpc_plugins/connector/ssh.rb +1 -1
  25. data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef.rb +1 -2
  26. data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/proxmox/proxmox_waiter.rb +6 -6
  27. data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/proxmox.rb +2 -2
  28. data/lib/hybrid_platforms_conductor/hpc_plugins/report/mediawiki.rb +1 -1
  29. data/lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/keepass.rb +6 -6
  30. data/lib/hybrid_platforms_conductor/hpc_plugins/test/file_system.rb +2 -2
  31. data/lib/hybrid_platforms_conductor/hpc_plugins/test/file_system_hdfs.rb +2 -2
  32. data/lib/hybrid_platforms_conductor/hpc_plugins/test/ip.rb +1 -1
  33. data/lib/hybrid_platforms_conductor/hpc_plugins/test/linear_strategy.rb +1 -1
  34. data/lib/hybrid_platforms_conductor/hpc_plugins/test/private_ips.rb +1 -2
  35. data/lib/hybrid_platforms_conductor/hpc_plugins/test/public_ips.rb +1 -2
  36. data/lib/hybrid_platforms_conductor/hpc_plugins/test/veids.rb +1 -2
  37. data/lib/hybrid_platforms_conductor/hpc_plugins/test/vulnerabilities.rb +2 -2
  38. data/lib/hybrid_platforms_conductor/plugins.rb +4 -3
  39. data/lib/hybrid_platforms_conductor/tests_runner.rb +2 -2
  40. data/lib/hybrid_platforms_conductor/topographer.rb +5 -6
  41. data/lib/hybrid_platforms_conductor/version.rb +1 -1
  42. data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/bash_spec.rb +1 -1
  43. data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/ruby_spec.rb +8 -8
  44. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/cli_options_spec.rb +3 -3
  45. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/connections_spec.rb +8 -8
  46. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/global_helpers_spec.rb +1 -1
  47. data/spec/hybrid_platforms_conductor_test/api/actions_executor/helpers_spec.rb +4 -4
  48. data/spec/hybrid_platforms_conductor_test/api/actions_executor/timeout_spec.rb +1 -1
  49. data/spec/hybrid_platforms_conductor_test/api/cmd_runner_spec.rb +4 -4
  50. data/spec/hybrid_platforms_conductor_test/api/deployer/log_plugins/remote_fs_spec.rb +12 -12
  51. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioner_spec.rb +8 -8
  52. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/docker_spec.rb +1 -1
  53. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/expired_containers_spec.rb +27 -27
  54. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/retries_spec.rb +1 -1
  55. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/host_ip_spec.rb +25 -0
  56. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs_plugins_api_spec.rb +5 -5
  57. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/inventory_spec.rb +1 -1
  58. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/packaging_spec.rb +9 -9
  59. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/services_deployment_spec.rb +1 -1
  60. data/spec/hybrid_platforms_conductor_test/api/platforms_handler_spec.rb +1 -1
  61. data/spec/hybrid_platforms_conductor_test/api/plugins_spec.rb +30 -2
  62. data/spec/hybrid_platforms_conductor_test/api/services_handler/deploy_allowed_spec.rb +7 -7
  63. data/spec/hybrid_platforms_conductor_test/api/services_handler/package_spec.rb +18 -18
  64. data/spec/hybrid_platforms_conductor_test/api/services_handler/prepare_for_deploy_spec.rb +30 -30
  65. data/spec/hybrid_platforms_conductor_test/api/tests_runner/common_spec.rb +5 -5
  66. data/spec/hybrid_platforms_conductor_test/api/tests_runner/node_check_spec.rb +6 -6
  67. data/spec/hybrid_platforms_conductor_test/api/tests_runner/node_ssh_spec.rb +6 -6
  68. data/spec/hybrid_platforms_conductor_test/api/tests_runner/reports_spec.rb +4 -4
  69. data/spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb.rb +8 -8
  70. data/spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb_2.rb +5 -5
  71. data/spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb_others.rb +3 -3
  72. data/spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb_others_2.rb +3 -3
  73. data/spec/hybrid_platforms_conductor_test/docs_spec.rb +1 -1
  74. data/spec/hybrid_platforms_conductor_test/executables/check_node_spec.rb +1 -1
  75. data/spec/hybrid_platforms_conductor_test/executables/deploy_spec.rb +1 -1
  76. data/spec/hybrid_platforms_conductor_test/executables/options/cmd_runner_spec.rb +1 -1
  77. data/spec/hybrid_platforms_conductor_test/executables/options/deployer_spec.rb +2 -2
  78. data/spec/hybrid_platforms_conductor_test/executables/options/nodes_handler_spec.rb +1 -0
  79. data/spec/hybrid_platforms_conductor_test/executables/options/tests_runner_spec.rb +1 -1
  80. data/spec/hybrid_platforms_conductor_test/executables/report_spec.rb +1 -0
  81. data/spec/hybrid_platforms_conductor_test/executables/run_spec.rb +2 -2
  82. data/spec/hybrid_platforms_conductor_test/helpers/actions_executor_helpers.rb +1 -1
  83. data/spec/hybrid_platforms_conductor_test/helpers/cmdb_helpers.rb +2 -2
  84. data/spec/hybrid_platforms_conductor_test/helpers/connector_ssh_helpers.rb +1 -1
  85. data/spec/hybrid_platforms_conductor_test/helpers/deployer_helpers.rb +7 -7
  86. data/spec/hybrid_platforms_conductor_test/helpers/platforms_handler_helpers.rb +3 -3
  87. data/spec/hybrid_platforms_conductor_test/helpers/provisioner_proxmox_helpers.rb +11 -12
  88. data/spec/hybrid_platforms_conductor_test/helpers/serverless_chef_helpers.rb +2 -2
  89. data/spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem_with_lib/sub1/lib/sub2/hpc_plugins/test_plugin_type_3/test_plugin_id_5.rb +34 -0
  90. data/spec/hybrid_platforms_conductor_test/shared_examples/deployer.rb +1 -1
  91. data/spec/hybrid_platforms_conductor_test/test_connector.rb +1 -1
  92. data/spec/hybrid_platforms_conductor_test.rb +1 -0
  93. metadata +152 -136
@@ -97,7 +97,7 @@ module HybridPlatformsConductorTest
97
97
  expect(user).to eq proxmox_user
98
98
  expect(password).to eq proxmox_password
99
99
  expect(realm).to eq proxmox_realm
100
- expect(options[:verify_ssl]).to eq false
100
+ expect(options[:verify_ssl]).to be false
101
101
  proxmox = instance_double ::Proxmox::Proxmox
102
102
  # Mock initialization
103
103
  expect(proxmox).to receive(:logger=).and_return(nil)
@@ -137,7 +137,7 @@ module HybridPlatformsConductorTest
137
137
  expect(user).to eq proxmox_user
138
138
  expect(password).to eq proxmox_password
139
139
  expect(realm).to eq 'pam'
140
- expect(options[:verify_ssl]).to eq false
140
+ expect(options[:verify_ssl]).to be false
141
141
  proxmox = instance_double ::Proxmox::Proxmox
142
142
  # Mock initialization
143
143
  expect(proxmox).to receive(:logger=).and_return(nil)
@@ -180,7 +180,7 @@ module HybridPlatformsConductorTest
180
180
  expect(user).to eq proxmox_user
181
181
  expect(password).to eq proxmox_password
182
182
  expect(realm).to eq 'pam'
183
- expect(options[:verify_ssl]).to eq false
183
+ expect(options[:verify_ssl]).to be false
184
184
  proxmox = instance_double ::Proxmox::Proxmox
185
185
  # Mock initialization
186
186
  expect(proxmox).to receive(:logger=).and_return(nil)
@@ -215,7 +215,7 @@ module HybridPlatformsConductorTest
215
215
  expect(user).to eq proxmox_user
216
216
  expect(password).to eq proxmox_password
217
217
  expect(realm).to eq 'pam'
218
- expect(options[:verify_ssl]).to eq false
218
+ expect(options[:verify_ssl]).to be false
219
219
  proxmox = instance_double ::Proxmox::Proxmox
220
220
  # Mock initialization
221
221
  expect(proxmox).to receive(:logger=).and_return(nil)
@@ -252,7 +252,7 @@ module HybridPlatformsConductorTest
252
252
  expect(user).to eq proxmox_user
253
253
  expect(password).to eq proxmox_password
254
254
  expect(realm).to eq 'pam'
255
- expect(options[:verify_ssl]).to eq false
255
+ expect(options[:verify_ssl]).to be false
256
256
  proxmox = instance_double ::Proxmox::Proxmox
257
257
  # Mock initialization
258
258
  expect(proxmox).to receive(:logger=).and_return(nil)
@@ -494,8 +494,8 @@ module HybridPlatformsConductorTest
494
494
  mock_proxmox_calls_with(
495
495
  mocked_pve_nodes.map do |pve_nodes|
496
496
  # Complete pve_nodes with default values
497
- pve_nodes = pve_nodes.map do |pve_node_name, pve_node_info|
498
- pve_node_info[:lxc_containers] = (pve_node_info.key?(:lxc_containers) ? pve_node_info[:lxc_containers] : {}).map do |vm_id, vm_info|
497
+ pve_nodes = pve_nodes.to_h do |pve_node_name, pve_node_info|
498
+ pve_node_info[:lxc_containers] = (pve_node_info.key?(:lxc_containers) ? pve_node_info[:lxc_containers] : {}).to_h do |vm_id, vm_info|
499
499
  [
500
500
  vm_id,
501
501
  {
@@ -510,7 +510,7 @@ module HybridPlatformsConductorTest
510
510
  environment: 'test_env'
511
511
  }.merge(vm_info)
512
512
  ]
513
- end.to_h
513
+ end
514
514
  [
515
515
  pve_node_name,
516
516
  {
@@ -519,14 +519,14 @@ module HybridPlatformsConductorTest
519
519
  storage_total: 100 * 1024 * 1024 * 1024
520
520
  }.merge(pve_node_info)
521
521
  ]
522
- end.to_h
522
+ end
523
523
  proc do |url, pve_node, user, password, realm, options|
524
524
  expect(url).to eq 'https://my-proxmox.my-domain.com:8006/api2/json/'
525
525
  expect(pve_node).to eq 'my-proxmox'
526
526
  expect(user).to eq proxmox_user
527
527
  expect(password).to eq proxmox_password
528
528
  expect(realm).to eq proxmox_realm
529
- expect(options[:verify_ssl]).to eq false
529
+ expect(options[:verify_ssl]).to be false
530
530
  proxmox = instance_double ::Proxmox::Proxmox
531
531
  # Mock getting status of a container
532
532
  allow(proxmox).to receive(:get) do |path|
@@ -647,8 +647,7 @@ module HybridPlatformsConductorTest
647
647
  block.nil? ? remaining_leftovers : remaining_leftovers.each(&block)
648
648
  when %r{^/sys/fs/cgroup/\*/lxc/(.+)$}
649
649
  vm_id_str = Regexp.last_match(1)
650
- file_pattern = %r{^/sys/fs/cgroup/.+/lxc/#{Regexp.escape(vm_id_str)}$}
651
- matched_files = remaining_leftovers.select { |file| file =~ file_pattern }
650
+ matched_files = remaining_leftovers.grep(%r{^/sys/fs/cgroup/.+/lxc/#{Regexp.escape(vm_id_str)}$})
652
651
  block.nil? ? matched_files : matched_files.each(&block)
653
652
  else
654
653
  original_glob.call(dir, &block)
@@ -27,12 +27,12 @@ module HybridPlatformsConductorTest
27
27
  FileUtils.cp_r "#{__dir__}/../serverless_chef_repositories/#{names[name]}/.", repository
28
28
  end
29
29
  with_platforms(repositories.values.map { |repository| "serverless_chef_platform path: '#{repository}'\n" }.join + additional_config) do
30
- repositories = names.keys.map do |name|
30
+ repositories = names.keys.to_h do |name|
31
31
  [
32
32
  test_platforms_handler.platform(name),
33
33
  repositories[name]
34
34
  ]
35
- end.to_h
35
+ end
36
36
  test_platforms_handler.inject_dependencies(
37
37
  nodes_handler: test_nodes_handler,
38
38
  actions_executor: test_actions_executor
@@ -0,0 +1,34 @@
1
+ module HybridPlatformsConductorTest
2
+
3
+ module MockedLib
4
+
5
+ module MyTestGemWithLib
6
+
7
+ module Sub1
8
+
9
+ module Lib
10
+
11
+ module Sub2
12
+
13
+ module HpcPlugins
14
+
15
+ module TestPluginType3
16
+
17
+ class TestPluginId5 < HybridPlatformsConductor::TestPluginType3
18
+ end
19
+
20
+ end
21
+
22
+ end
23
+
24
+ end
25
+
26
+ end
27
+
28
+ end
29
+
30
+ end
31
+
32
+ end
33
+
34
+ end
@@ -24,7 +24,7 @@ shared_examples 'a deployer' do
24
24
  with_platform_to_deploy(expect_local_environment: true) do
25
25
  test_deployer.local_environment = true
26
26
  expect(test_deployer.deploy_on('node')).to eq('node' => expected_deploy_result)
27
- expect(test_deployer.local_environment).to eq true
27
+ expect(test_deployer.local_environment).to be true
28
28
  end
29
29
  end
30
30
 
@@ -140,7 +140,7 @@ module HybridPlatformsConductorTest
140
140
  extra_opts[:sudo] = sudo if sudo
141
141
  extra_opts[:owner] = owner if owner
142
142
  extra_opts[:group] = group if group
143
- @calls << [:remote_copy, from, to] + (extra_opts.empty? ? [] : [extra_opts])
143
+ @calls << ([:remote_copy, from, to] + (extra_opts.empty? ? [] : [extra_opts]))
144
144
  @remote_copy_code&.call(@stdout_io, @stderr_io, self)
145
145
  end
146
146
 
@@ -58,6 +58,7 @@ require 'hybrid_platforms_conductor_test/test_plugins/several_checks'
58
58
  require 'hybrid_platforms_conductor_test/test_provisioner'
59
59
  require 'hybrid_platforms_conductor_test/test_secrets_reader_plugin'
60
60
  require 'hybrid_platforms_conductor_test/tests_report_plugin'
61
+ require 'active_support/core_ext/module'
61
62
 
62
63
  module HybridPlatformsConductorTest
63
64
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hybrid_platforms_conductor
3
3
  version: !ruby/object:Gem::Version
4
- version: 33.9.2
4
+ version: 33.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muriel Salvan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2022-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: range_operators
@@ -290,6 +290,20 @@ dependencies:
290
290
  - - "~>"
291
291
  - !ruby/object:Gem::Version
292
292
  version: '1.1'
293
+ - !ruby/object:Gem::Dependency
294
+ name: activesupport
295
+ requirement: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - "~>"
298
+ - !ruby/object:Gem::Version
299
+ version: '7.0'
300
+ type: :runtime
301
+ prerelease: false
302
+ version_requirements: !ruby/object:Gem::Requirement
303
+ requirements:
304
+ - - "~>"
305
+ - !ruby/object:Gem::Version
306
+ version: '7.0'
293
307
  - !ruby/object:Gem::Dependency
294
308
  name: rspec
295
309
  requirement: !ruby/object:Gem::Requirement
@@ -366,186 +380,186 @@ email:
366
380
  - muriel@x-aeon.com
367
381
  executables:
368
382
  - setup
369
- - report
383
+ - run
370
384
  - get_impacted_nodes
385
+ - nodes_to_deploy
371
386
  - last_deploys
372
- - topograph
373
- - dump_nodes_json
374
387
  - free_ips
388
+ - test
375
389
  - ssh_config
390
+ - topograph
391
+ - report
392
+ - free_veids
376
393
  - deploy
377
- - run
378
- - test
379
- - nodes_to_deploy
394
+ - dump_nodes_json
380
395
  - check-node
381
- - free_veids
382
396
  extensions: []
383
397
  extra_rdoc_files:
384
- - CHANGELOG.md
385
- - README.md
386
398
  - LICENSE.md
387
- - docs/plugins/connector/local.md
388
- - docs/plugins/connector/ssh.md
389
- - docs/plugins/report/confluence.md
390
- - docs/plugins/report/mediawiki.md
391
- - docs/plugins/report/stdout.md
392
- - docs/plugins/log/remote_fs.md
399
+ - README.md
400
+ - CHANGELOG.md
401
+ - docs/config_dsl.md
402
+ - docs/executables.md
403
+ - docs/plugins.md
393
404
  - docs/plugins/provisioner/proxmox.md
394
405
  - docs/plugins/provisioner/docker.md
395
406
  - docs/plugins/provisioner/podman.md
396
- - docs/plugins/secrets_reader/keepass.md
397
- - docs/plugins/secrets_reader/thycotic.md
398
- - docs/plugins/secrets_reader/cli.md
399
407
  - docs/plugins/platform_handler/yaml_inventory.md
400
408
  - docs/plugins/platform_handler/serverless_chef.md
401
- - docs/plugins/test_report/confluence.md
402
- - docs/plugins/test_report/stdout.md
403
- - docs/plugins/cmdb/host_ip.md
409
+ - docs/plugins/cmdb/platform_handlers.md
404
410
  - docs/plugins/cmdb/config.md
405
411
  - docs/plugins/cmdb/host_keys.md
406
- - docs/plugins/cmdb/platform_handlers.md
407
- - docs/plugins/test/vulnerabilities.md
408
- - docs/plugins/test/hostname.md
412
+ - docs/plugins/cmdb/host_ip.md
413
+ - docs/plugins/test/public_ips.md
409
414
  - docs/plugins/test/bitbucket_conf.md
410
- - docs/plugins/test/check_from_scratch.md
415
+ - docs/plugins/test/executables.md
416
+ - docs/plugins/test/local_users.md
417
+ - docs/plugins/test/deploy_freshness.md
418
+ - docs/plugins/test/can_be_checked.md
419
+ - docs/plugins/test/idempotence.md
420
+ - docs/plugins/test/hostname.md
411
421
  - docs/plugins/test/file_system.md
422
+ - docs/plugins/test/orphan_files.md
423
+ - docs/plugins/test/deploy_from_scratch.md
424
+ - docs/plugins/test/linear_strategy.md
412
425
  - docs/plugins/test/ip.md
413
- - docs/plugins/test/connection.md
414
426
  - docs/plugins/test/ports.md
427
+ - docs/plugins/test/deploy_removes_root_access.md
428
+ - docs/plugins/test/file_system_hdfs.md
429
+ - docs/plugins/test/check_from_scratch.md
430
+ - docs/plugins/test/divergence.md
415
431
  - docs/plugins/test/spectre.md
416
432
  - docs/plugins/test/veids.md
433
+ - docs/plugins/test/mounts.md
434
+ - docs/plugins/test/jenkins_ci_masters_ok.md
417
435
  - docs/plugins/test/jenkins_ci_conf.md
418
436
  - docs/plugins/test/private_ips.md
419
- - docs/plugins/test/orphan_files.md
420
- - docs/plugins/test/file_system_hdfs.md
421
- - docs/plugins/test/public_ips.md
422
- - docs/plugins/test/github_ci.md
423
- - docs/plugins/test/mounts.md
437
+ - docs/plugins/test/connection.md
424
438
  - docs/plugins/test/check_deploy_and_idempotence.md
425
- - docs/plugins/test/deploy_freshness.md
426
- - docs/plugins/test/idempotence.md
427
- - docs/plugins/test/local_users.md
428
- - docs/plugins/test/jenkins_ci_masters_ok.md
429
- - docs/plugins/test/can_be_checked.md
430
- - docs/plugins/test/deploy_removes_root_access.md
431
- - docs/plugins/test/executables.md
432
- - docs/plugins/test/linear_strategy.md
433
- - docs/plugins/test/deploy_from_scratch.md
434
- - docs/plugins/test/divergence.md
439
+ - docs/plugins/test/vulnerabilities.md
440
+ - docs/plugins/test/github_ci.md
441
+ - docs/plugins/report/confluence.md
442
+ - docs/plugins/report/stdout.md
443
+ - docs/plugins/report/mediawiki.md
444
+ - docs/plugins/secrets_reader/thycotic.md
445
+ - docs/plugins/secrets_reader/keepass.md
446
+ - docs/plugins/secrets_reader/cli.md
447
+ - docs/plugins/test_report/confluence.md
448
+ - docs/plugins/test_report/stdout.md
449
+ - docs/plugins/connector/local.md
450
+ - docs/plugins/connector/ssh.md
435
451
  - docs/plugins/action/interactive.md
436
- - docs/plugins/action/scp.md
437
- - docs/plugins/action/bash.md
438
452
  - docs/plugins/action/ruby.md
453
+ - docs/plugins/action/scp.md
439
454
  - docs/plugins/action/remote_bash.md
440
- - docs/gen/mermaid/README.md-0.png
441
- - docs/gen/mermaid/docs/executables/run.md-0.png
442
- - docs/gen/mermaid/docs/executables/free_ips.md-0.png
443
- - docs/gen/mermaid/docs/executables/report.md-0.png
444
- - docs/gen/mermaid/docs/executables/test.md-0.png
445
- - docs/gen/mermaid/docs/executables/ssh_config.md-0.png
446
- - docs/gen/mermaid/docs/executables/setup.md-0.png
447
- - docs/gen/mermaid/docs/executables/deploy.md-0.png
448
- - docs/gen/mermaid/docs/executables/check-node.md-0.png
449
- - docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png
450
- - docs/gen/mermaid/docs/executables/last_deploys.md-0.png
451
- - docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png
452
- - docs/gen/mermaid/docs/executables/free_veids.md-0.png
453
- - docs/tutorial/03_scale.md
454
- - docs/tutorial/04_test.md
455
- - docs/tutorial/01_installation.md
456
- - docs/tutorial/05_extend_with_plugins.md
457
- - docs/tutorial/02_first_node.md
458
- - docs/install.md
455
+ - docs/plugins/action/bash.md
456
+ - docs/plugins/log/remote_fs.md
459
457
  - docs/api.md
460
- - docs/tutorial.md
461
- - docs/executables/ssh_config.md
462
- - docs/executables/topograph.md
463
- - docs/executables/setup.md
464
458
  - docs/executables/deploy.md
465
- - docs/executables/test.md
459
+ - docs/executables/dump_nodes_json.md
460
+ - docs/executables/check-node.md
466
461
  - docs/executables/last_deploys.md
467
- - docs/executables/free_ips.md
468
462
  - docs/executables/report.md
469
- - docs/executables/check-node.md
470
463
  - docs/executables/run.md
464
+ - docs/executables/setup.md
471
465
  - docs/executables/get_impacted_nodes.md
472
- - docs/executables/dump_nodes_json.md
466
+ - docs/executables/topograph.md
467
+ - docs/executables/free_ips.md
473
468
  - docs/executables/free_veids.md
474
469
  - docs/executables/nodes_to_deploy.md
475
- - docs/config_dsl.md
476
- - docs/executables.md
470
+ - docs/executables/ssh_config.md
471
+ - docs/executables/test.md
472
+ - docs/install.md
473
+ - docs/tutorial.md
474
+ - docs/tutorial/04_test.md
475
+ - docs/tutorial/02_first_node.md
476
+ - docs/tutorial/01_installation.md
477
+ - docs/tutorial/05_extend_with_plugins.md
478
+ - docs/tutorial/03_scale.md
477
479
  - docs/plugins_create.md
478
- - docs/plugins.md
480
+ - docs/gen/mermaid/docs/executables/ssh_config.md-0.png
481
+ - docs/gen/mermaid/docs/executables/free_veids.md-0.png
482
+ - docs/gen/mermaid/docs/executables/report.md-0.png
483
+ - docs/gen/mermaid/docs/executables/free_ips.md-0.png
484
+ - docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png
485
+ - docs/gen/mermaid/docs/executables/setup.md-0.png
486
+ - docs/gen/mermaid/docs/executables/test.md-0.png
487
+ - docs/gen/mermaid/docs/executables/deploy.md-0.png
488
+ - docs/gen/mermaid/docs/executables/run.md-0.png
489
+ - docs/gen/mermaid/docs/executables/last_deploys.md-0.png
490
+ - docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png
491
+ - docs/gen/mermaid/docs/executables/check-node.md-0.png
492
+ - docs/gen/mermaid/README.md-0.png
493
+ - examples/bare/hpc_config.rb
494
+ - examples/bare/Gemfile
495
+ - examples/localhost/inventory.yaml
496
+ - examples/localhost/hpc_config.rb
497
+ - examples/localhost/Gemfile
498
+ - examples/tutorial/04_test/web_docker_image/main.go
499
+ - examples/tutorial/04_test/web_docker_image/Dockerfile
500
+ - examples/tutorial/04_test/web_docker_image/hello_world.txt
501
+ - examples/tutorial/04_test/web_docker_image/start.sh
502
+ - examples/tutorial/04_test/web_docker_image/hpc_root.key
503
+ - examples/tutorial/04_test/web_docker_image/hpc_root.key.pub
504
+ - examples/tutorial/04_test/web_docker_image/test.bash
505
+ - examples/tutorial/04_test/my-platforms/my_commands.bash
506
+ - examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
507
+ - examples/tutorial/04_test/my-platforms/hpc_config.rb
508
+ - examples/tutorial/04_test/my-platforms/Gemfile
509
+ - examples/tutorial/04_test/my-service-conf-repo/service_web-hello.rb
510
+ - examples/tutorial/04_test/my-service-conf-repo/my-service.conf.erb
511
+ - examples/tutorial/04_test/my-service-conf-repo/inventory.yaml
512
+ - examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb
513
+ - examples/tutorial/04_test/node/my-service.conf
514
+ - examples/tutorial/01_installation/my-platforms/hpc_config.rb
515
+ - examples/tutorial/01_installation/my-platforms/Gemfile
516
+ - examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
517
+ - examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key
518
+ - examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key.pub
519
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/main.go
520
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/Dockerfile
521
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/hello_world.txt
522
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/start.sh
523
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key
524
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key.pub
525
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/test.bash
479
526
  - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/my_hpc_plugins.gemspec
480
- - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/report/web_report.rb
481
527
  - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/platform_handler/json_bash.rb
482
528
  - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/test/root_space.rb
483
- - examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key
484
- - examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key.pub
485
- - examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
486
- - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-gcc.bash
487
- - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-python.bash
529
+ - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/report/web_report.rb
488
530
  - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/hosts.json
489
- - examples/tutorial/05_extend_with_plugins/node/my-service.conf
490
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/my-service.conf.erb
491
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb
492
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_web-hello.rb
493
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml
494
- - examples/tutorial/05_extend_with_plugins/my-platforms/Gemfile
531
+ - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-python.bash
532
+ - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-gcc.bash
495
533
  - examples/tutorial/05_extend_with_plugins/my-platforms/my_commands.bash
496
534
  - examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
497
535
  - examples/tutorial/05_extend_with_plugins/my-platforms/hpc_config.rb
498
- - examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key
499
- - examples/tutorial/05_extend_with_plugins/web_docker_image/start.sh
500
- - examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key.pub
501
- - examples/tutorial/05_extend_with_plugins/web_docker_image/Dockerfile
502
- - examples/tutorial/05_extend_with_plugins/web_docker_image/hello_world.txt
503
- - examples/tutorial/05_extend_with_plugins/web_docker_image/test.bash
504
- - examples/tutorial/05_extend_with_plugins/web_docker_image/main.go
505
- - examples/tutorial/02_first_node/node/my-service.conf
506
- - examples/tutorial/02_first_node/my-service-conf-repo/my-service.conf.erb
507
- - examples/tutorial/02_first_node/my-service-conf-repo/service_my-service.rb
508
- - examples/tutorial/02_first_node/my-service-conf-repo/inventory.yaml
509
- - examples/tutorial/02_first_node/my-platforms/Gemfile
510
- - examples/tutorial/02_first_node/my-platforms/hpc_config.rb
511
- - examples/tutorial/01_installation/my-platforms/Gemfile
512
- - examples/tutorial/01_installation/my-platforms/hpc_config.rb
513
- - examples/tutorial/04_test/node/my-service.conf
514
- - examples/tutorial/04_test/my-service-conf-repo/my-service.conf.erb
515
- - examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb
516
- - examples/tutorial/04_test/my-service-conf-repo/service_web-hello.rb
517
- - examples/tutorial/04_test/my-service-conf-repo/inventory.yaml
518
- - examples/tutorial/04_test/my-platforms/Gemfile
519
- - examples/tutorial/04_test/my-platforms/my_commands.bash
520
- - examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
521
- - examples/tutorial/04_test/my-platforms/hpc_config.rb
522
- - examples/tutorial/04_test/web_docker_image/hpc_root.key
523
- - examples/tutorial/04_test/web_docker_image/start.sh
524
- - examples/tutorial/04_test/web_docker_image/hpc_root.key.pub
525
- - examples/tutorial/04_test/web_docker_image/Dockerfile
526
- - examples/tutorial/04_test/web_docker_image/hello_world.txt
527
- - examples/tutorial/04_test/web_docker_image/test.bash
528
- - examples/tutorial/04_test/web_docker_image/main.go
529
- - examples/tutorial/03_scale/node/my-service.conf
530
- - examples/tutorial/03_scale/my-service-conf-repo/my-service.conf.erb
531
- - examples/tutorial/03_scale/my-service-conf-repo/service_my-service.rb
532
- - examples/tutorial/03_scale/my-service-conf-repo/service_web-hello.rb
533
- - examples/tutorial/03_scale/my-service-conf-repo/inventory.yaml
534
- - examples/tutorial/03_scale/my-platforms/Gemfile
535
- - examples/tutorial/03_scale/my-platforms/my_commands.bash
536
- - examples/tutorial/03_scale/my-platforms/hpc_config.rb
537
- - examples/tutorial/03_scale/web_docker_image/hpc_root.key
538
- - examples/tutorial/03_scale/web_docker_image/start.sh
539
- - examples/tutorial/03_scale/web_docker_image/hpc_root.key.pub
536
+ - examples/tutorial/05_extend_with_plugins/my-platforms/Gemfile
537
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_web-hello.rb
538
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/my-service.conf.erb
539
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml
540
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb
541
+ - examples/tutorial/05_extend_with_plugins/node/my-service.conf
542
+ - examples/tutorial/03_scale/web_docker_image/main.go
540
543
  - examples/tutorial/03_scale/web_docker_image/Dockerfile
541
544
  - examples/tutorial/03_scale/web_docker_image/hello_world.txt
545
+ - examples/tutorial/03_scale/web_docker_image/start.sh
546
+ - examples/tutorial/03_scale/web_docker_image/hpc_root.key
547
+ - examples/tutorial/03_scale/web_docker_image/hpc_root.key.pub
542
548
  - examples/tutorial/03_scale/web_docker_image/test.bash
543
- - examples/tutorial/03_scale/web_docker_image/main.go
544
- - examples/bare/Gemfile
545
- - examples/bare/hpc_config.rb
546
- - examples/localhost/Gemfile
547
- - examples/localhost/hpc_config.rb
548
- - examples/localhost/inventory.yaml
549
+ - examples/tutorial/03_scale/my-platforms/my_commands.bash
550
+ - examples/tutorial/03_scale/my-platforms/hpc_config.rb
551
+ - examples/tutorial/03_scale/my-platforms/Gemfile
552
+ - examples/tutorial/03_scale/my-service-conf-repo/service_web-hello.rb
553
+ - examples/tutorial/03_scale/my-service-conf-repo/my-service.conf.erb
554
+ - examples/tutorial/03_scale/my-service-conf-repo/inventory.yaml
555
+ - examples/tutorial/03_scale/my-service-conf-repo/service_my-service.rb
556
+ - examples/tutorial/03_scale/node/my-service.conf
557
+ - examples/tutorial/02_first_node/my-platforms/hpc_config.rb
558
+ - examples/tutorial/02_first_node/my-platforms/Gemfile
559
+ - examples/tutorial/02_first_node/my-service-conf-repo/my-service.conf.erb
560
+ - examples/tutorial/02_first_node/my-service-conf-repo/inventory.yaml
561
+ - examples/tutorial/02_first_node/my-service-conf-repo/service_my-service.rb
562
+ - examples/tutorial/02_first_node/node/my-service.conf
549
563
  files:
550
564
  - CHANGELOG.md
551
565
  - LICENSE.md
@@ -979,6 +993,7 @@ files:
979
993
  - spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem/hpc_plugins/test_plugin_type/test_plugin_id_2.rb
980
994
  - spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem2/sub_dir/hpc_plugins/test_plugin_type/test_plugin_id_3.rb
981
995
  - spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem2/sub_dir/hpc_plugins/test_plugin_type_2/test_plugin_id_4.rb
996
+ - spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem_with_lib/sub1/lib/sub2/hpc_plugins/test_plugin_type_3/test_plugin_id_5.rb
982
997
  - spec/hybrid_platforms_conductor_test/platform_handler_plugins/test.rb
983
998
  - spec/hybrid_platforms_conductor_test/platform_handler_plugins/test_2.rb
984
999
  - spec/hybrid_platforms_conductor_test/report_plugin.rb
@@ -1065,7 +1080,8 @@ files:
1065
1080
  homepage:
1066
1081
  licenses:
1067
1082
  - BSD-3-Clause
1068
- metadata: {}
1083
+ metadata:
1084
+ rubygems_mfa_required: 'true'
1069
1085
  post_install_message:
1070
1086
  rdoc_options: []
1071
1087
  require_paths: