hybrid_platforms_conductor 32.16.3 → 33.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +42 -0
  3. data/README.md +6 -3
  4. data/bin/last_deploys +4 -1
  5. data/bin/nodes_to_deploy +5 -5
  6. data/docs/config_dsl.md +45 -1
  7. data/docs/executables.md +6 -7
  8. data/docs/executables/check-node.md +3 -3
  9. data/docs/executables/deploy.md +3 -3
  10. data/docs/executables/dump_nodes_json.md +3 -3
  11. data/docs/executables/test.md +3 -3
  12. data/docs/executables/topograph.md +3 -3
  13. data/docs/gen/mermaid/README.md-0.png +0 -0
  14. data/docs/gen/mermaid/docs/executables/check-node.md-0.png +0 -0
  15. data/docs/gen/mermaid/docs/executables/deploy.md-0.png +0 -0
  16. data/docs/gen/mermaid/docs/executables/free_ips.md-0.png +0 -0
  17. data/docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png +0 -0
  18. data/docs/gen/mermaid/docs/executables/last_deploys.md-0.png +0 -0
  19. data/docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png +0 -0
  20. data/docs/gen/mermaid/docs/executables/report.md-0.png +0 -0
  21. data/docs/gen/mermaid/docs/executables/run.md-0.png +0 -0
  22. data/docs/gen/mermaid/docs/executables/ssh_config.md-0.png +0 -0
  23. data/docs/gen/mermaid/docs/executables/test.md-0.png +0 -0
  24. data/docs/plugins.md +47 -0
  25. data/docs/plugins/connector/ssh.md +1 -1
  26. data/docs/plugins/log/remote_fs.md +26 -0
  27. data/docs/plugins/secrets_reader/cli.md +31 -0
  28. data/docs/plugins/secrets_reader/thycotic.md +46 -0
  29. data/docs/plugins/test/bitbucket_conf.md +1 -1
  30. data/docs/plugins/test/check_deploy_and_idempotence.md +1 -1
  31. data/docs/plugins/test/connection.md +1 -0
  32. data/docs/plugins/test/deploy_removes_root_access.md +1 -1
  33. data/docs/plugins/test/file_system.md +1 -0
  34. data/docs/plugins/test/github_ci.md +48 -0
  35. data/docs/plugins/test/hostname.md +1 -0
  36. data/docs/plugins/test/ip.md +1 -0
  37. data/docs/plugins/test/jenkins_ci_conf.md +1 -1
  38. data/docs/plugins/test/jenkins_ci_masters_ok.md +1 -1
  39. data/docs/plugins/test/local_users.md +1 -0
  40. data/docs/plugins/test/mounts.md +1 -0
  41. data/docs/plugins/test/orphan_files.md +1 -0
  42. data/docs/plugins/test/ports.md +1 -0
  43. data/docs/plugins/test/spectre.md +1 -0
  44. data/docs/plugins/test/vulnerabilities.md +1 -0
  45. data/lib/hybrid_platforms_conductor/actions_executor.rb +8 -1
  46. data/lib/hybrid_platforms_conductor/common_config_dsl/github.rb +62 -0
  47. data/lib/hybrid_platforms_conductor/deployer.rb +193 -141
  48. data/lib/hybrid_platforms_conductor/hpc_plugins/connector/ssh.rb +3 -3
  49. data/lib/hybrid_platforms_conductor/hpc_plugins/log/my_log_plugin.rb.sample +100 -0
  50. data/lib/hybrid_platforms_conductor/hpc_plugins/log/remote_fs.rb +179 -0
  51. data/lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/cli.rb +75 -0
  52. data/lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/my_secrets_reader_plugin.rb.sample +46 -0
  53. data/lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/thycotic.rb +87 -0
  54. data/lib/hybrid_platforms_conductor/hpc_plugins/test/check_deploy_and_idempotence.rb +1 -1
  55. data/lib/hybrid_platforms_conductor/hpc_plugins/test/connection.rb +3 -1
  56. data/lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_freshness.rb +7 -20
  57. data/lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_removes_root_access.rb +1 -1
  58. data/lib/hybrid_platforms_conductor/hpc_plugins/test/file_system.rb +2 -1
  59. data/lib/hybrid_platforms_conductor/hpc_plugins/test/github_ci.rb +32 -0
  60. data/lib/hybrid_platforms_conductor/hpc_plugins/test/hostname.rb +3 -1
  61. data/lib/hybrid_platforms_conductor/hpc_plugins/test/ip.rb +3 -1
  62. data/lib/hybrid_platforms_conductor/hpc_plugins/test/local_users.rb +3 -1
  63. data/lib/hybrid_platforms_conductor/hpc_plugins/test/mounts.rb +3 -1
  64. data/lib/hybrid_platforms_conductor/hpc_plugins/test/orphan_files.rb +3 -1
  65. data/lib/hybrid_platforms_conductor/hpc_plugins/test/ports.rb +3 -1
  66. data/lib/hybrid_platforms_conductor/hpc_plugins/test/spectre.rb +3 -1
  67. data/lib/hybrid_platforms_conductor/hpc_plugins/test/vulnerabilities.rb +2 -1
  68. data/lib/hybrid_platforms_conductor/log.rb +31 -0
  69. data/lib/hybrid_platforms_conductor/plugins.rb +1 -0
  70. data/lib/hybrid_platforms_conductor/secrets_reader.rb +31 -0
  71. data/lib/hybrid_platforms_conductor/test_only_remote_node.rb +18 -0
  72. data/lib/hybrid_platforms_conductor/version.rb +1 -1
  73. data/spec/hybrid_platforms_conductor_test.rb +27 -6
  74. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/connections_spec.rb +3 -3
  75. data/spec/hybrid_platforms_conductor_test/api/deployer/config_dsl_spec.rb +46 -4
  76. data/spec/hybrid_platforms_conductor_test/api/deployer/deploy_spec.rb +187 -212
  77. data/spec/hybrid_platforms_conductor_test/api/deployer/log_plugins/remote_fs_spec.rb +223 -0
  78. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioner_spec.rb +4 -4
  79. data/spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/cli_spec.rb +63 -0
  80. data/spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/thycotic_spec.rb +253 -0
  81. data/spec/hybrid_platforms_conductor_test/api/tests_runner/global_spec.rb +1 -1
  82. data/spec/hybrid_platforms_conductor_test/api/tests_runner/test_plugins/github_ci_spec.rb +72 -0
  83. data/spec/hybrid_platforms_conductor_test/executables/last_deploys_spec.rb +146 -98
  84. data/spec/hybrid_platforms_conductor_test/executables/nodes_to_deploy_spec.rb +240 -83
  85. data/spec/hybrid_platforms_conductor_test/executables/options/common_spec.rb +2 -1
  86. data/spec/hybrid_platforms_conductor_test/executables/options/deployer_spec.rb +0 -182
  87. data/spec/hybrid_platforms_conductor_test/helpers/connector_ssh_helpers.rb +1 -1
  88. data/spec/hybrid_platforms_conductor_test/helpers/deployer_helpers.rb +40 -53
  89. data/spec/hybrid_platforms_conductor_test/helpers/deployer_test_helpers.rb +251 -15
  90. data/spec/hybrid_platforms_conductor_test/test_log_no_read_plugin.rb +82 -0
  91. data/spec/hybrid_platforms_conductor_test/test_log_plugin.rb +103 -0
  92. data/spec/hybrid_platforms_conductor_test/test_secrets_reader_plugin.rb +45 -0
  93. metadata +41 -2
@@ -0,0 +1,103 @@
1
+ module HybridPlatformsConductorTest
2
+
3
+ # Test log
4
+ class TestLogPlugin < HybridPlatformsConductor::Log
5
+
6
+ class << self
7
+ attr_accessor :calls
8
+ end
9
+
10
+ # Get actions to save logs
11
+ # [API] - This method is mandatory.
12
+ # [API] - The following API components are accessible:
13
+ # * *@config* (Config): Main configuration API.
14
+ # * *@nodes_handler* (NodesHandler): Nodes handler API.
15
+ # * *@actions_executor* (ActionsExecutor): Actions executor API.
16
+ #
17
+ # Parameters::
18
+ # * *node* (String): Node for which logs are being saved
19
+ # * *services* (Array<String>): The list of services that have been deployed on this node
20
+ # * *deployment_info* (Hash<Symbol,Object>): Additional information to attach to the logs
21
+ # * *exit_status* (Integer or Symbol): Exit status of the deployment
22
+ # * *stdout* (String): Deployment's stdout
23
+ # * *stderr* (String): Deployment's stderr
24
+ # Result::
25
+ # * Array< Hash<Symbol,Object> >: List of actions to be done
26
+ def actions_to_save_logs(node, services, deployment_info, exit_status, stdout, stderr)
27
+ TestLogPlugin.calls << {
28
+ method: :actions_to_save_logs,
29
+ node: node,
30
+ services: services,
31
+ # Don't store the date
32
+ deployment_info: deployment_info.select { |k, _v| k != :date },
33
+ exit_status: exit_status,
34
+ stdout: stdout,
35
+ stderr: stderr
36
+ }
37
+ [{ bash: "echo Save test logs to #{node}" }]
38
+ end
39
+
40
+ # Get actions to read logs.
41
+ # If provided, this method can return some actions to be executed that will fetch logs from servers or remote nodes.
42
+ # By using this method to run actions instead of the synchronous method logs_from, such actions will be run in parallel which can greatly improve time-consuming operations when querying a lot of nodes.
43
+ # [API] - This method is optional.
44
+ # [API] - The following API components are accessible:
45
+ # * *@config* (Config): Main configuration API.
46
+ # * *@nodes_handler* (NodesHandler): Nodes handler API.
47
+ # * *@actions_executor* (ActionsExecutor): Actions executor API.
48
+ #
49
+ # Parameters::
50
+ # * *node* (String): Node for which deployment logs are being read
51
+ # Result::
52
+ # * Array< Hash<Symbol,Object> >: List of actions to be done
53
+ def actions_to_read_logs(node)
54
+ TestLogPlugin.calls << {
55
+ method: :actions_to_read_logs,
56
+ node: node
57
+ }
58
+ [{ bash: "echo Read logs for #{node}" }]
59
+ end
60
+
61
+ # Get deployment logs from a node.
62
+ # This method can use the result of actions previously run to read logs, as returned by the actions_to_read_logs method.
63
+ # [API] - This method is mandatory.
64
+ # [API] - The following API components are accessible:
65
+ # * *@config* (Config): Main configuration API.
66
+ # * *@nodes_handler* (NodesHandler): Nodes handler API.
67
+ # * *@actions_executor* (ActionsExecutor): Actions executor API.
68
+ #
69
+ # Parameters::
70
+ # * *node* (String): The node we want deployment logs from
71
+ # * *exit_status* (Integer, Symbol or nil): Exit status of actions to read logs, or nil if no action was returned by actions_to_read_logs
72
+ # * *stdout* (String or nil): stdout of actions to read logs, or nil if no action was returned by actions_to_read_logs
73
+ # * *stderr* (String or nil): stderr of actions to read logs, or nil if no action was returned by actions_to_read_logs
74
+ # Result::
75
+ # * Hash<Symbol,Object>: Deployment log information:
76
+ # * *error* (String): Error string in case deployment logs could not be retrieved. If set then further properties will be ignored. [optional]
77
+ # * *services* (Array<String>): List of services deployed on the node
78
+ # * *deployment_info* (Hash<Symbol,Object>): Deployment metadata
79
+ # * *exit_status* (Integer or Symbol): Deployment exit status
80
+ # * *stdout* (String): Deployment stdout
81
+ # * *stderr* (String): Deployment stderr
82
+ def logs_for(node, exit_status, stdout, stderr)
83
+ TestLogPlugin.calls << {
84
+ method: :logs_for,
85
+ node: node,
86
+ exit_status: exit_status,
87
+ stdout: stdout,
88
+ stderr: stderr
89
+ }
90
+ {
91
+ services: %w[unknown],
92
+ deployment_info: {
93
+ user: 'test_user'
94
+ },
95
+ exit_status: 666,
96
+ stdout: 'Deployment test stdout',
97
+ stderr: 'Deployment test stderr'
98
+ }
99
+ end
100
+
101
+ end
102
+
103
+ end
@@ -0,0 +1,45 @@
1
+ require 'hybrid_platforms_conductor/secrets_reader'
2
+
3
+ module HybridPlatformsConductorTest
4
+
5
+ # Mock a secrets reader plugin
6
+ class TestSecretsReaderPlugin < HybridPlatformsConductor::SecretsReader
7
+
8
+ class << self
9
+ attr_accessor :calls
10
+ attr_accessor :deployer
11
+ attr_accessor :mocked_secrets
12
+ end
13
+
14
+ # Return secrets for a given service to be deployed on a node.
15
+ # [API] - This method is mandatory
16
+ # [API] - The following API components are accessible:
17
+ # * *@config* (Config): Main configuration API.
18
+ # * *@cmd_runner* (CmdRunner): Command Runner API.
19
+ # * *@nodes_handler* (NodesHandler): Nodes handler API.
20
+ #
21
+ # Parameters::
22
+ # * *node* (String): Node to be deployed
23
+ # * *service* (String): Service to be deployed
24
+ # Result::
25
+ # * Hash: The secrets
26
+ def secrets_for(node, service)
27
+ # Get the name by looking into the plugins' map
28
+ plugin_name, _plugin = TestSecretsReaderPlugin.deployer.instance_variable_get(:@secrets_readers).find { |plugin_name, plugin| plugin == self }
29
+ TestSecretsReaderPlugin.calls << {
30
+ instance: plugin_name,
31
+ node: node,
32
+ service: service
33
+ }
34
+ TestSecretsReaderPlugin.mocked_secrets.dig(node, service, plugin_name) || {
35
+ node => {
36
+ service => {
37
+ plugin_name.to_s => 'Secret value'
38
+ }
39
+ }
40
+ }
41
+ end
42
+
43
+ end
44
+
45
+ end
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: 32.16.3
4
+ version: 33.0.0
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-06-01 00:00:00.000000000 Z
11
+ date: 2021-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: range_operators
@@ -248,6 +248,20 @@ dependencies:
248
248
  - - "~>"
249
249
  - !ruby/object:Gem::Version
250
250
  version: '0.16'
251
+ - !ruby/object:Gem::Dependency
252
+ name: octokit
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - "~>"
256
+ - !ruby/object:Gem::Version
257
+ version: '4.21'
258
+ type: :runtime
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - "~>"
263
+ - !ruby/object:Gem::Version
264
+ version: '4.21'
251
265
  - !ruby/object:Gem::Dependency
252
266
  name: rspec
253
267
  requirement: !ruby/object:Gem::Requirement
@@ -340,11 +354,13 @@ extra_rdoc_files:
340
354
  - docs/executables/dump_nodes_json.md
341
355
  - docs/plugins/platform_handler/serverless_chef.md
342
356
  - docs/plugins/platform_handler/yaml_inventory.md
357
+ - docs/plugins/log/remote_fs.md
343
358
  - docs/plugins/provisioner/proxmox.md
344
359
  - docs/plugins/provisioner/podman.md
345
360
  - docs/plugins/provisioner/docker.md
346
361
  - docs/plugins/test/spectre.md
347
362
  - docs/plugins/test/bitbucket_conf.md
363
+ - docs/plugins/test/github_ci.md
348
364
  - docs/plugins/test/vulnerabilities.md
349
365
  - docs/plugins/test/deploy_removes_root_access.md
350
366
  - docs/plugins/test/private_ips.md
@@ -382,6 +398,8 @@ extra_rdoc_files:
382
398
  - docs/plugins/action/remote_bash.md
383
399
  - docs/plugins/action/ruby.md
384
400
  - docs/plugins/action/bash.md
401
+ - docs/plugins/secrets_reader/cli.md
402
+ - docs/plugins/secrets_reader/thycotic.md
385
403
  - docs/plugins/cmdb/host_ip.md
386
404
  - docs/plugins/cmdb/config.md
387
405
  - docs/plugins/cmdb/platform_handlers.md
@@ -518,6 +536,7 @@ files:
518
536
  - docs/plugins/cmdb/platform_handlers.md
519
537
  - docs/plugins/connector/local.md
520
538
  - docs/plugins/connector/ssh.md
539
+ - docs/plugins/log/remote_fs.md
521
540
  - docs/plugins/platform_handler/serverless_chef.md
522
541
  - docs/plugins/platform_handler/yaml_inventory.md
523
542
  - docs/plugins/provisioner/docker.md
@@ -526,6 +545,8 @@ files:
526
545
  - docs/plugins/report/confluence.md
527
546
  - docs/plugins/report/mediawiki.md
528
547
  - docs/plugins/report/stdout.md
548
+ - docs/plugins/secrets_reader/cli.md
549
+ - docs/plugins/secrets_reader/thycotic.md
529
550
  - docs/plugins/test/bitbucket_conf.md
530
551
  - docs/plugins/test/can_be_checked.md
531
552
  - docs/plugins/test/check_deploy_and_idempotence.md
@@ -538,6 +559,7 @@ files:
538
559
  - docs/plugins/test/executables.md
539
560
  - docs/plugins/test/file_system.md
540
561
  - docs/plugins/test/file_system_hdfs.md
562
+ - docs/plugins/test/github_ci.md
541
563
  - docs/plugins/test/hostname.md
542
564
  - docs/plugins/test/idempotence.md
543
565
  - docs/plugins/test/ip.md
@@ -640,6 +662,7 @@ files:
640
662
  - lib/hybrid_platforms_conductor/common_config_dsl/bitbucket.rb
641
663
  - lib/hybrid_platforms_conductor/common_config_dsl/confluence.rb
642
664
  - lib/hybrid_platforms_conductor/common_config_dsl/file_system_tests.rb
665
+ - lib/hybrid_platforms_conductor/common_config_dsl/github.rb
643
666
  - lib/hybrid_platforms_conductor/common_config_dsl/idempotence_tests.rb
644
667
  - lib/hybrid_platforms_conductor/config.rb
645
668
  - lib/hybrid_platforms_conductor/confluence.rb
@@ -662,6 +685,8 @@ files:
662
685
  - lib/hybrid_platforms_conductor/hpc_plugins/connector/local.rb
663
686
  - lib/hybrid_platforms_conductor/hpc_plugins/connector/my_connector.rb.sample
664
687
  - lib/hybrid_platforms_conductor/hpc_plugins/connector/ssh.rb
688
+ - lib/hybrid_platforms_conductor/hpc_plugins/log/my_log_plugin.rb.sample
689
+ - lib/hybrid_platforms_conductor/hpc_plugins/log/remote_fs.rb
665
690
  - lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/platform_handler_plugin.rb.sample
666
691
  - lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef.rb
667
692
  - lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef/dsl_parser.rb
@@ -678,6 +703,9 @@ files:
678
703
  - lib/hybrid_platforms_conductor/hpc_plugins/report/my_report_plugin.rb.sample
679
704
  - lib/hybrid_platforms_conductor/hpc_plugins/report/stdout.rb
680
705
  - lib/hybrid_platforms_conductor/hpc_plugins/report/templates/confluence_inventory.html.erb
706
+ - lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/cli.rb
707
+ - lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/my_secrets_reader_plugin.rb.sample
708
+ - lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/thycotic.rb
681
709
  - lib/hybrid_platforms_conductor/hpc_plugins/test/bitbucket_conf.rb
682
710
  - lib/hybrid_platforms_conductor/hpc_plugins/test/can_be_checked.rb
683
711
  - lib/hybrid_platforms_conductor/hpc_plugins/test/check_deploy_and_idempotence.rb
@@ -690,6 +718,7 @@ files:
690
718
  - lib/hybrid_platforms_conductor/hpc_plugins/test/executables.rb
691
719
  - lib/hybrid_platforms_conductor/hpc_plugins/test/file_system.rb
692
720
  - lib/hybrid_platforms_conductor/hpc_plugins/test/file_system_hdfs.rb
721
+ - lib/hybrid_platforms_conductor/hpc_plugins/test/github_ci.rb
693
722
  - lib/hybrid_platforms_conductor/hpc_plugins/test/hostname.rb
694
723
  - lib/hybrid_platforms_conductor/hpc_plugins/test/idempotence.rb
695
724
  - lib/hybrid_platforms_conductor/hpc_plugins/test/ip.rb
@@ -715,6 +744,7 @@ files:
715
744
  - lib/hybrid_platforms_conductor/hpc_plugins/test_report/templates/confluence.html.erb
716
745
  - lib/hybrid_platforms_conductor/io_router.rb
717
746
  - lib/hybrid_platforms_conductor/json_dumper.rb
747
+ - lib/hybrid_platforms_conductor/log.rb
718
748
  - lib/hybrid_platforms_conductor/logger_helpers.rb
719
749
  - lib/hybrid_platforms_conductor/mutex_dir
720
750
  - lib/hybrid_platforms_conductor/nodes_handler.rb
@@ -726,9 +756,11 @@ files:
726
756
  - lib/hybrid_platforms_conductor/provisioner.rb
727
757
  - lib/hybrid_platforms_conductor/report.rb
728
758
  - lib/hybrid_platforms_conductor/reports_handler.rb
759
+ - lib/hybrid_platforms_conductor/secrets_reader.rb
729
760
  - lib/hybrid_platforms_conductor/services_handler.rb
730
761
  - lib/hybrid_platforms_conductor/test.rb
731
762
  - lib/hybrid_platforms_conductor/test_by_service.rb
763
+ - lib/hybrid_platforms_conductor/test_only_remote_node.rb
732
764
  - lib/hybrid_platforms_conductor/test_report.rb
733
765
  - lib/hybrid_platforms_conductor/tests_runner.rb
734
766
  - lib/hybrid_platforms_conductor/thycotic.rb
@@ -764,6 +796,7 @@ files:
764
796
  - spec/hybrid_platforms_conductor_test/api/deployer/check_spec.rb
765
797
  - spec/hybrid_platforms_conductor_test/api/deployer/config_dsl_spec.rb
766
798
  - spec/hybrid_platforms_conductor_test/api/deployer/deploy_spec.rb
799
+ - spec/hybrid_platforms_conductor_test/api/deployer/log_plugins/remote_fs_spec.rb
767
800
  - spec/hybrid_platforms_conductor_test/api/deployer/parse_deploy_output_spec.rb
768
801
  - spec/hybrid_platforms_conductor_test/api/deployer/provisioner_spec.rb
769
802
  - spec/hybrid_platforms_conductor_test/api/deployer/provisioners/docker/Dockerfile
@@ -784,6 +817,8 @@ files:
784
817
  - spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/start_spec.rb
785
818
  - spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/state_spec.rb
786
819
  - spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/stop_spec.rb
820
+ - spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/cli_spec.rb
821
+ - spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/thycotic_spec.rb
787
822
  - spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/config_spec.rb
788
823
  - spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/host_ip_spec.rb
789
824
  - spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/host_keys_spec.rb
@@ -819,6 +854,7 @@ files:
819
854
  - spec/hybrid_platforms_conductor_test/api/tests_runner/platform_spec.rb
820
855
  - spec/hybrid_platforms_conductor_test/api/tests_runner/reports_spec.rb
821
856
  - spec/hybrid_platforms_conductor_test/api/tests_runner/test_plugins/bitbucket_conf_spec.rb
857
+ - spec/hybrid_platforms_conductor_test/api/tests_runner/test_plugins/github_ci_spec.rb
822
858
  - spec/hybrid_platforms_conductor_test/api/tests_runner/test_reports_plugins/confluence_spec.rb
823
859
  - spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb.rb
824
860
  - spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb2.rb
@@ -905,6 +941,8 @@ files:
905
941
  - spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/policyfiles/test_policy_2.rb
906
942
  - spec/hybrid_platforms_conductor_test/test_action.rb
907
943
  - spec/hybrid_platforms_conductor_test/test_connector.rb
944
+ - spec/hybrid_platforms_conductor_test/test_log_no_read_plugin.rb
945
+ - spec/hybrid_platforms_conductor_test/test_log_plugin.rb
908
946
  - spec/hybrid_platforms_conductor_test/test_plugins/global.rb
909
947
  - spec/hybrid_platforms_conductor_test/test_plugins/node.rb
910
948
  - spec/hybrid_platforms_conductor_test/test_plugins/node_check.rb
@@ -912,6 +950,7 @@ files:
912
950
  - spec/hybrid_platforms_conductor_test/test_plugins/platform.rb
913
951
  - spec/hybrid_platforms_conductor_test/test_plugins/several_checks.rb
914
952
  - spec/hybrid_platforms_conductor_test/test_provisioner.rb
953
+ - spec/hybrid_platforms_conductor_test/test_secrets_reader_plugin.rb
915
954
  - spec/hybrid_platforms_conductor_test/tests_report_plugin.rb
916
955
  - spec/spec_helper.rb
917
956
  - tools/check_md