hybrid_platforms_conductor 32.10.0 → 32.13.0
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 +1103 -0
- data/LICENSE.md +31 -0
- data/README.md +395 -0
- data/bin/setup +1 -1
- data/docs/api.md +349 -0
- data/docs/config_dsl.md +315 -0
- data/docs/executables.md +226 -0
- data/docs/executables/check-node.md +155 -0
- data/docs/executables/deploy.md +198 -0
- data/docs/executables/dump_nodes_json.md +110 -0
- data/docs/executables/free_ips.md +93 -0
- data/docs/executables/free_veids.md +73 -0
- data/docs/executables/get_impacted_nodes.md +94 -0
- data/docs/executables/last_deploys.md +114 -0
- data/docs/executables/nodes_to_deploy.md +139 -0
- data/docs/executables/report.md +159 -0
- data/docs/executables/run.md +126 -0
- data/docs/executables/setup.md +92 -0
- data/docs/executables/ssh_config.md +151 -0
- data/docs/executables/test.md +213 -0
- data/docs/executables/topograph.md +139 -0
- data/docs/gen/mermaid/README.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/check-node.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/deploy.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/free_ips.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/free_veids.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/last_deploys.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/report.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/run.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/setup.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/ssh_config.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/test.md-0.png +0 -0
- data/docs/install.md +161 -0
- data/docs/plugins.md +215 -0
- data/docs/plugins/action/bash.md +37 -0
- data/docs/plugins/action/interactive.md +37 -0
- data/docs/plugins/action/remote_bash.md +67 -0
- data/docs/plugins/action/ruby.md +69 -0
- data/docs/plugins/action/scp.md +61 -0
- data/docs/plugins/cmdb/config.md +46 -0
- data/docs/plugins/cmdb/host_ip.md +33 -0
- data/docs/plugins/cmdb/host_keys.md +33 -0
- data/docs/plugins/cmdb/platform_handlers.md +33 -0
- data/docs/plugins/connector/local.md +28 -0
- data/docs/plugins/connector/ssh.md +95 -0
- data/docs/plugins/platform_handler/yaml_inventory.md +105 -0
- data/docs/plugins/provisioner/docker.md +27 -0
- data/docs/plugins/provisioner/podman.md +27 -0
- data/docs/plugins/provisioner/proxmox.md +115 -0
- data/docs/plugins/report/confluence.md +49 -0
- data/docs/plugins/report/mediawiki.md +28 -0
- data/docs/plugins/report/stdout.md +32 -0
- data/docs/plugins/test/bitbucket_conf.md +97 -0
- data/docs/plugins/test/can_be_checked.md +27 -0
- data/docs/plugins/test/check_deploy_and_idempotence.md +61 -0
- data/docs/plugins/test/check_from_scratch.md +28 -0
- data/docs/plugins/test/connection.md +27 -0
- data/docs/plugins/test/deploy_freshness.md +27 -0
- data/docs/plugins/test/deploy_from_scratch.md +28 -0
- data/docs/plugins/test/deploy_removes_root_access.md +29 -0
- data/docs/plugins/test/divergence.md +41 -0
- data/docs/plugins/test/executables.md +26 -0
- data/docs/plugins/test/file_system.md +49 -0
- data/docs/plugins/test/file_system_hdfs.md +65 -0
- data/docs/plugins/test/hostname.md +27 -0
- data/docs/plugins/test/idempotence.md +56 -0
- data/docs/plugins/test/ip.md +28 -0
- data/docs/plugins/test/jenkins_ci_conf.md +54 -0
- data/docs/plugins/test/jenkins_ci_masters_ok.md +54 -0
- data/docs/plugins/test/linear_strategy.md +26 -0
- data/docs/plugins/test/local_users.md +48 -0
- data/docs/plugins/test/mounts.md +55 -0
- data/docs/plugins/test/orphan_files.md +38 -0
- data/docs/plugins/test/ports.md +50 -0
- data/docs/plugins/test/private_ips.md +27 -0
- data/docs/plugins/test/public_ips.md +27 -0
- data/docs/plugins/test/spectre.md +26 -0
- data/docs/plugins/test/veids.md +27 -0
- data/docs/plugins/test/vulnerabilities.md +65 -0
- data/docs/plugins/test_report/confluence.md +43 -0
- data/docs/plugins/test_report/stdout.md +26 -0
- data/docs/plugins_create.md +135 -0
- data/docs/tutorial.md +57 -0
- data/docs/tutorial/01_installation.md +129 -0
- data/docs/tutorial/02_first_node.md +466 -0
- data/docs/tutorial/03_scale.md +876 -0
- data/docs/tutorial/04_test.md +965 -0
- data/docs/tutorial/05_extend_with_plugins.md +1132 -0
- data/examples/bare/Gemfile +4 -0
- data/examples/bare/hpc_config.rb +2 -0
- data/examples/localhost/Gemfile +4 -0
- data/examples/localhost/hpc_config.rb +2 -0
- data/examples/localhost/inventory.yaml +4 -0
- data/lib/hybrid_platforms_conductor/actions_executor.rb +1 -0
- data/lib/hybrid_platforms_conductor/common_config_dsl/idempotence_tests.rb +23 -1
- data/lib/hybrid_platforms_conductor/deployer.rb +3 -2
- data/lib/hybrid_platforms_conductor/hpc_plugins/action/remote_bash.rb +29 -13
- data/lib/hybrid_platforms_conductor/hpc_plugins/action/scp.rb +1 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/connector/local.rb +98 -0
- data/lib/hybrid_platforms_conductor/hpc_plugins/connector/my_connector.rb.sample +2 -2
- data/lib/hybrid_platforms_conductor/hpc_plugins/connector/ssh.rb +15 -4
- data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/platform_handler_plugin.rb.sample +5 -5
- data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/yaml_inventory.rb +140 -0
- data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/proxmox.rb +6 -3
- data/lib/hybrid_platforms_conductor/hpc_plugins/report/templates/confluence_inventory.html.erb +1 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/bitbucket_conf.rb +4 -4
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/check_deploy_and_idempotence.rb +4 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_freshness.rb +1 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_removes_root_access.rb +19 -17
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/divergence.rb +19 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/executables.rb +27 -13
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/hostname.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/idempotence.rb +4 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/ip.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/local_users.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/mounts.rb +4 -3
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/orphan_files.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/spectre.rb +1 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/vulnerabilities.rb +8 -7
- data/lib/hybrid_platforms_conductor/hpc_plugins/test_report/confluence.rb +1 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test_report/templates/confluence.html.erb +1 -1
- data/lib/hybrid_platforms_conductor/json_dumper.rb +1 -1
- data/lib/hybrid_platforms_conductor/platform_handler.rb +1 -1
- data/lib/hybrid_platforms_conductor/services_handler.rb +18 -16
- data/lib/hybrid_platforms_conductor/tests_runner.rb +0 -1
- data/lib/hybrid_platforms_conductor/topographer.rb +0 -1
- data/lib/hybrid_platforms_conductor/version.rb +1 -1
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/remote_bash_spec.rb +16 -0
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/local/connectable_nodes_spec.rb +30 -0
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/local/remote_actions_spec.rb +113 -0
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/cli_options_spec.rb +6 -2
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/global_helpers_spec.rb +38 -1
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/remote_actions_spec.rb +37 -4
- data/spec/hybrid_platforms_conductor_test/docs_spec.rb +10 -0
- data/tools/check_md +89 -0
- data/tools/generate_mermaid +75 -0
- metadata +207 -12
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.
|
4
|
+
version: 32.13.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-
|
11
|
+
date: 2021-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: range_operators
|
@@ -281,23 +281,120 @@ description: Provides a complete toolset to help DevOps maintain, deploy, monito
|
|
281
281
|
email:
|
282
282
|
- muriel@x-aeon.com
|
283
283
|
executables:
|
284
|
-
- setup
|
285
|
-
- free_veids
|
286
284
|
- dump_nodes_json
|
287
|
-
- topograph
|
288
|
-
- last_deploys
|
289
|
-
- report
|
290
285
|
- get_impacted_nodes
|
291
|
-
-
|
292
|
-
-
|
286
|
+
- topograph
|
287
|
+
- run
|
288
|
+
- free_veids
|
293
289
|
- nodes_to_deploy
|
290
|
+
- setup
|
294
291
|
- free_ips
|
295
292
|
- check-node
|
293
|
+
- report
|
294
|
+
- test
|
295
|
+
- last_deploys
|
296
|
+
- ssh_config
|
296
297
|
- deploy
|
297
|
-
- run
|
298
298
|
extensions: []
|
299
|
-
extra_rdoc_files:
|
299
|
+
extra_rdoc_files:
|
300
|
+
- CHANGELOG.md
|
301
|
+
- LICENSE.md
|
302
|
+
- README.md
|
303
|
+
- docs/plugins.md
|
304
|
+
- docs/plugins/provisioner/podman.md
|
305
|
+
- docs/plugins/provisioner/docker.md
|
306
|
+
- docs/plugins/provisioner/proxmox.md
|
307
|
+
- docs/plugins/connector/local.md
|
308
|
+
- docs/plugins/connector/ssh.md
|
309
|
+
- docs/plugins/action/scp.md
|
310
|
+
- docs/plugins/action/interactive.md
|
311
|
+
- docs/plugins/action/bash.md
|
312
|
+
- docs/plugins/action/remote_bash.md
|
313
|
+
- docs/plugins/action/ruby.md
|
314
|
+
- docs/plugins/report/stdout.md
|
315
|
+
- docs/plugins/report/confluence.md
|
316
|
+
- docs/plugins/report/mediawiki.md
|
317
|
+
- docs/plugins/cmdb/host_ip.md
|
318
|
+
- docs/plugins/cmdb/platform_handlers.md
|
319
|
+
- docs/plugins/cmdb/config.md
|
320
|
+
- docs/plugins/cmdb/host_keys.md
|
321
|
+
- docs/plugins/test/veids.md
|
322
|
+
- docs/plugins/test/idempotence.md
|
323
|
+
- docs/plugins/test/jenkins_ci_conf.md
|
324
|
+
- docs/plugins/test/check_deploy_and_idempotence.md
|
325
|
+
- docs/plugins/test/divergence.md
|
326
|
+
- docs/plugins/test/check_from_scratch.md
|
327
|
+
- docs/plugins/test/bitbucket_conf.md
|
328
|
+
- docs/plugins/test/public_ips.md
|
329
|
+
- docs/plugins/test/deploy_freshness.md
|
330
|
+
- docs/plugins/test/private_ips.md
|
331
|
+
- docs/plugins/test/connection.md
|
332
|
+
- docs/plugins/test/orphan_files.md
|
333
|
+
- docs/plugins/test/ports.md
|
334
|
+
- docs/plugins/test/file_system_hdfs.md
|
335
|
+
- docs/plugins/test/jenkins_ci_masters_ok.md
|
336
|
+
- docs/plugins/test/can_be_checked.md
|
337
|
+
- docs/plugins/test/local_users.md
|
338
|
+
- docs/plugins/test/executables.md
|
339
|
+
- docs/plugins/test/spectre.md
|
340
|
+
- docs/plugins/test/deploy_removes_root_access.md
|
341
|
+
- docs/plugins/test/deploy_from_scratch.md
|
342
|
+
- docs/plugins/test/file_system.md
|
343
|
+
- docs/plugins/test/mounts.md
|
344
|
+
- docs/plugins/test/ip.md
|
345
|
+
- docs/plugins/test/vulnerabilities.md
|
346
|
+
- docs/plugins/test/hostname.md
|
347
|
+
- docs/plugins/test/linear_strategy.md
|
348
|
+
- docs/plugins/platform_handler/yaml_inventory.md
|
349
|
+
- docs/plugins/test_report/stdout.md
|
350
|
+
- docs/plugins/test_report/confluence.md
|
351
|
+
- docs/install.md
|
352
|
+
- docs/plugins_create.md
|
353
|
+
- docs/executables/topograph.md
|
354
|
+
- docs/executables/report.md
|
355
|
+
- docs/executables/free_ips.md
|
356
|
+
- docs/executables/free_veids.md
|
357
|
+
- docs/executables/last_deploys.md
|
358
|
+
- docs/executables/check-node.md
|
359
|
+
- docs/executables/nodes_to_deploy.md
|
360
|
+
- docs/executables/run.md
|
361
|
+
- docs/executables/deploy.md
|
362
|
+
- docs/executables/setup.md
|
363
|
+
- docs/executables/dump_nodes_json.md
|
364
|
+
- docs/executables/ssh_config.md
|
365
|
+
- docs/executables/get_impacted_nodes.md
|
366
|
+
- docs/executables/test.md
|
367
|
+
- docs/executables.md
|
368
|
+
- docs/gen/mermaid/README.md-0.png
|
369
|
+
- docs/gen/mermaid/docs/executables/last_deploys.md-0.png
|
370
|
+
- docs/gen/mermaid/docs/executables/check-node.md-0.png
|
371
|
+
- docs/gen/mermaid/docs/executables/deploy.md-0.png
|
372
|
+
- docs/gen/mermaid/docs/executables/free_ips.md-0.png
|
373
|
+
- docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png
|
374
|
+
- docs/gen/mermaid/docs/executables/setup.md-0.png
|
375
|
+
- docs/gen/mermaid/docs/executables/test.md-0.png
|
376
|
+
- docs/gen/mermaid/docs/executables/run.md-0.png
|
377
|
+
- docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png
|
378
|
+
- docs/gen/mermaid/docs/executables/report.md-0.png
|
379
|
+
- docs/gen/mermaid/docs/executables/free_veids.md-0.png
|
380
|
+
- docs/gen/mermaid/docs/executables/ssh_config.md-0.png
|
381
|
+
- docs/api.md
|
382
|
+
- docs/tutorial/05_extend_with_plugins.md
|
383
|
+
- docs/tutorial/01_installation.md
|
384
|
+
- docs/tutorial/04_test.md
|
385
|
+
- docs/tutorial/03_scale.md
|
386
|
+
- docs/tutorial/02_first_node.md
|
387
|
+
- docs/config_dsl.md
|
388
|
+
- docs/tutorial.md
|
389
|
+
- examples/localhost/Gemfile
|
390
|
+
- examples/localhost/hpc_config.rb
|
391
|
+
- examples/localhost/inventory.yaml
|
392
|
+
- examples/bare/Gemfile
|
393
|
+
- examples/bare/hpc_config.rb
|
300
394
|
files:
|
395
|
+
- CHANGELOG.md
|
396
|
+
- LICENSE.md
|
397
|
+
- README.md
|
301
398
|
- bin/check-node
|
302
399
|
- bin/deploy
|
303
400
|
- bin/dump_nodes_json
|
@@ -312,6 +409,97 @@ files:
|
|
312
409
|
- bin/ssh_config
|
313
410
|
- bin/test
|
314
411
|
- bin/topograph
|
412
|
+
- docs/api.md
|
413
|
+
- docs/config_dsl.md
|
414
|
+
- docs/executables.md
|
415
|
+
- docs/executables/check-node.md
|
416
|
+
- docs/executables/deploy.md
|
417
|
+
- docs/executables/dump_nodes_json.md
|
418
|
+
- docs/executables/free_ips.md
|
419
|
+
- docs/executables/free_veids.md
|
420
|
+
- docs/executables/get_impacted_nodes.md
|
421
|
+
- docs/executables/last_deploys.md
|
422
|
+
- docs/executables/nodes_to_deploy.md
|
423
|
+
- docs/executables/report.md
|
424
|
+
- docs/executables/run.md
|
425
|
+
- docs/executables/setup.md
|
426
|
+
- docs/executables/ssh_config.md
|
427
|
+
- docs/executables/test.md
|
428
|
+
- docs/executables/topograph.md
|
429
|
+
- docs/gen/mermaid/README.md-0.png
|
430
|
+
- docs/gen/mermaid/docs/executables/check-node.md-0.png
|
431
|
+
- docs/gen/mermaid/docs/executables/deploy.md-0.png
|
432
|
+
- docs/gen/mermaid/docs/executables/free_ips.md-0.png
|
433
|
+
- docs/gen/mermaid/docs/executables/free_veids.md-0.png
|
434
|
+
- docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png
|
435
|
+
- docs/gen/mermaid/docs/executables/last_deploys.md-0.png
|
436
|
+
- docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png
|
437
|
+
- docs/gen/mermaid/docs/executables/report.md-0.png
|
438
|
+
- docs/gen/mermaid/docs/executables/run.md-0.png
|
439
|
+
- docs/gen/mermaid/docs/executables/setup.md-0.png
|
440
|
+
- docs/gen/mermaid/docs/executables/ssh_config.md-0.png
|
441
|
+
- docs/gen/mermaid/docs/executables/test.md-0.png
|
442
|
+
- docs/install.md
|
443
|
+
- docs/plugins.md
|
444
|
+
- docs/plugins/action/bash.md
|
445
|
+
- docs/plugins/action/interactive.md
|
446
|
+
- docs/plugins/action/remote_bash.md
|
447
|
+
- docs/plugins/action/ruby.md
|
448
|
+
- docs/plugins/action/scp.md
|
449
|
+
- docs/plugins/cmdb/config.md
|
450
|
+
- docs/plugins/cmdb/host_ip.md
|
451
|
+
- docs/plugins/cmdb/host_keys.md
|
452
|
+
- docs/plugins/cmdb/platform_handlers.md
|
453
|
+
- docs/plugins/connector/local.md
|
454
|
+
- docs/plugins/connector/ssh.md
|
455
|
+
- docs/plugins/platform_handler/yaml_inventory.md
|
456
|
+
- docs/plugins/provisioner/docker.md
|
457
|
+
- docs/plugins/provisioner/podman.md
|
458
|
+
- docs/plugins/provisioner/proxmox.md
|
459
|
+
- docs/plugins/report/confluence.md
|
460
|
+
- docs/plugins/report/mediawiki.md
|
461
|
+
- docs/plugins/report/stdout.md
|
462
|
+
- docs/plugins/test/bitbucket_conf.md
|
463
|
+
- docs/plugins/test/can_be_checked.md
|
464
|
+
- docs/plugins/test/check_deploy_and_idempotence.md
|
465
|
+
- docs/plugins/test/check_from_scratch.md
|
466
|
+
- docs/plugins/test/connection.md
|
467
|
+
- docs/plugins/test/deploy_freshness.md
|
468
|
+
- docs/plugins/test/deploy_from_scratch.md
|
469
|
+
- docs/plugins/test/deploy_removes_root_access.md
|
470
|
+
- docs/plugins/test/divergence.md
|
471
|
+
- docs/plugins/test/executables.md
|
472
|
+
- docs/plugins/test/file_system.md
|
473
|
+
- docs/plugins/test/file_system_hdfs.md
|
474
|
+
- docs/plugins/test/hostname.md
|
475
|
+
- docs/plugins/test/idempotence.md
|
476
|
+
- docs/plugins/test/ip.md
|
477
|
+
- docs/plugins/test/jenkins_ci_conf.md
|
478
|
+
- docs/plugins/test/jenkins_ci_masters_ok.md
|
479
|
+
- docs/plugins/test/linear_strategy.md
|
480
|
+
- docs/plugins/test/local_users.md
|
481
|
+
- docs/plugins/test/mounts.md
|
482
|
+
- docs/plugins/test/orphan_files.md
|
483
|
+
- docs/plugins/test/ports.md
|
484
|
+
- docs/plugins/test/private_ips.md
|
485
|
+
- docs/plugins/test/public_ips.md
|
486
|
+
- docs/plugins/test/spectre.md
|
487
|
+
- docs/plugins/test/veids.md
|
488
|
+
- docs/plugins/test/vulnerabilities.md
|
489
|
+
- docs/plugins/test_report/confluence.md
|
490
|
+
- docs/plugins/test_report/stdout.md
|
491
|
+
- docs/plugins_create.md
|
492
|
+
- docs/tutorial.md
|
493
|
+
- docs/tutorial/01_installation.md
|
494
|
+
- docs/tutorial/02_first_node.md
|
495
|
+
- docs/tutorial/03_scale.md
|
496
|
+
- docs/tutorial/04_test.md
|
497
|
+
- docs/tutorial/05_extend_with_plugins.md
|
498
|
+
- examples/bare/Gemfile
|
499
|
+
- examples/bare/hpc_config.rb
|
500
|
+
- examples/localhost/Gemfile
|
501
|
+
- examples/localhost/hpc_config.rb
|
502
|
+
- examples/localhost/inventory.yaml
|
315
503
|
- lib/hybrid_platforms_conductor/action.rb
|
316
504
|
- lib/hybrid_platforms_conductor/actions_executor.rb
|
317
505
|
- lib/hybrid_platforms_conductor/bitbucket.rb
|
@@ -339,9 +527,11 @@ files:
|
|
339
527
|
- lib/hybrid_platforms_conductor/hpc_plugins/cmdb/host_keys.rb
|
340
528
|
- lib/hybrid_platforms_conductor/hpc_plugins/cmdb/my_cmdb.rb.sample
|
341
529
|
- lib/hybrid_platforms_conductor/hpc_plugins/cmdb/platform_handlers.rb
|
530
|
+
- lib/hybrid_platforms_conductor/hpc_plugins/connector/local.rb
|
342
531
|
- lib/hybrid_platforms_conductor/hpc_plugins/connector/my_connector.rb.sample
|
343
532
|
- lib/hybrid_platforms_conductor/hpc_plugins/connector/ssh.rb
|
344
533
|
- lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/platform_handler_plugin.rb.sample
|
534
|
+
- lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/yaml_inventory.rb
|
345
535
|
- lib/hybrid_platforms_conductor/hpc_plugins/provisioner/docker.rb
|
346
536
|
- lib/hybrid_platforms_conductor/hpc_plugins/provisioner/my_provisioner.rb.sample
|
347
537
|
- lib/hybrid_platforms_conductor/hpc_plugins/provisioner/podman.rb
|
@@ -422,6 +612,8 @@ files:
|
|
422
612
|
- spec/hybrid_platforms_conductor_test/api/actions_executor/actions/scp_spec.rb
|
423
613
|
- spec/hybrid_platforms_conductor_test/api/actions_executor/actions_spec.rb
|
424
614
|
- spec/hybrid_platforms_conductor_test/api/actions_executor/connection_spec.rb
|
615
|
+
- spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/local/connectable_nodes_spec.rb
|
616
|
+
- spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/local/remote_actions_spec.rb
|
425
617
|
- spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/cli_options_spec.rb
|
426
618
|
- spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/config_dsl_spec.rb
|
427
619
|
- spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/connectable_nodes_spec.rb
|
@@ -491,6 +683,7 @@ files:
|
|
491
683
|
- spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb2.rb
|
492
684
|
- spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb_others.rb
|
493
685
|
- spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb_others2.rb
|
686
|
+
- spec/hybrid_platforms_conductor_test/docs_spec.rb
|
494
687
|
- spec/hybrid_platforms_conductor_test/executables/check-node_spec.rb
|
495
688
|
- spec/hybrid_platforms_conductor_test/executables/deploy_spec.rb
|
496
689
|
- spec/hybrid_platforms_conductor_test/executables/get_impacted_nodes_spec.rb
|
@@ -542,6 +735,8 @@ files:
|
|
542
735
|
- spec/hybrid_platforms_conductor_test/test_provisioner.rb
|
543
736
|
- spec/hybrid_platforms_conductor_test/tests_report_plugin.rb
|
544
737
|
- spec/spec_helper.rb
|
738
|
+
- tools/check_md
|
739
|
+
- tools/generate_mermaid
|
545
740
|
homepage:
|
546
741
|
licenses:
|
547
742
|
- BSD-3-Clause
|
@@ -561,7 +756,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
561
756
|
- !ruby/object:Gem::Version
|
562
757
|
version: '0'
|
563
758
|
requirements: []
|
564
|
-
rubygems_version: 3.1.
|
759
|
+
rubygems_version: 3.1.6
|
565
760
|
signing_key:
|
566
761
|
specification_version: 4
|
567
762
|
summary: Hybrid Platforms Conductor
|