hybrid_platforms_conductor 33.2.4 → 33.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -255,12 +255,12 @@ describe HybridPlatformsConductor::NodesHandler do
255
255
  it 'can configure different priority rules for different properties' do
256
256
  with_cmdb_test_platform(
257
257
  cmdbs: %i[test_cmdb test_cmdb_2],
258
- additional_config: '
258
+ additional_config: <<~EO_CONFIG
259
259
  master_cmdbs(
260
260
  test_cmdb: :different_comment_2,
261
261
  test_cmdb_2: :different_comment
262
262
  )
263
- '
263
+ EO_CONFIG
264
264
  ) do
265
265
  expect(test_nodes_handler.get_different_comment_of('node1')).to eq 'Comment from test_cmdb_2'
266
266
  expect(test_nodes_handler.get_different_comment_2_of('node1')).to eq 'Comment2 from test_cmdb'
@@ -3,14 +3,14 @@ describe 'nodes_to_deploy executable' do
3
3
  # Setup a platform for nodes_to_deploy tests
4
4
  #
5
5
  # Parameters::
6
- # * *additional_platforms_content* (String): Additional platforms content to be added [default = '']
6
+ # * *additional_config* (String): Additional platforms content to be added [default: '']
7
7
  # * *block* (Proc): Code called when the platform is setup
8
8
  # * Parameters::
9
9
  # * *repository* (String): Platform's repository
10
- def with_test_platform_for_nodes_to_deploy(additional_platforms_content: '', &block)
10
+ def with_test_platform_for_nodes_to_deploy(additional_config: '', &block)
11
11
  with_test_platform(
12
12
  { nodes: { 'node1' => {}, 'node2' => {} } },
13
- additional_config: "#{additional_platforms_content}\nsend_logs_to :test_log",
13
+ additional_config: "#{additional_config}\nsend_logs_to :test_log",
14
14
  &block
15
15
  )
16
16
  end
@@ -203,10 +203,12 @@ describe 'nodes_to_deploy executable' do
203
203
  end
204
204
 
205
205
  it 'does not return nodes that are outside the schedule' do
206
- with_test_platform_for_nodes_to_deploy(additional_platforms_content: '
207
- for_nodes(\'node1\') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 120, duration: 60)) }
208
- for_nodes(\'node2\') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 60, duration: 120)) }
209
- ') do
206
+ with_test_platform_for_nodes_to_deploy(
207
+ additional_config: <<~EO_CONFIG
208
+ for_nodes('node1') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 120, duration: 60)) }
209
+ for_nodes('node2') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 60, duration: 120)) }
210
+ EO_CONFIG
211
+ ) do
210
212
  expect(test_deployer).to receive(:deployment_info_from).with(%w[node2]).and_return(
211
213
  'node2' => {
212
214
  services: %w[service2],
@@ -232,10 +234,12 @@ describe 'nodes_to_deploy executable' do
232
234
  end
233
235
 
234
236
  it 'does not return nodes that are outside the schedule when using a different deployment time' do
235
- with_test_platform_for_nodes_to_deploy(additional_platforms_content: '
236
- for_nodes(\'node1\') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 120, duration: 60)) }
237
- for_nodes(\'node2\') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 60, duration: 120)) }
238
- ') do
237
+ with_test_platform_for_nodes_to_deploy(
238
+ additional_config: <<~EO_CONFIG
239
+ for_nodes('node1') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 120, duration: 60)) }
240
+ for_nodes('node2') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 60, duration: 120)) }
241
+ EO_CONFIG
242
+ ) do
239
243
  expect(test_deployer).to receive(:deployment_info_from).with(%w[node1]).and_return(
240
244
  'node1' => {
241
245
  services: %w[service1],
@@ -262,10 +266,12 @@ describe 'nodes_to_deploy executable' do
262
266
  end
263
267
 
264
268
  it 'returns nodes that are outside the schedule when ignoring the schedule' do
265
- with_test_platform_for_nodes_to_deploy(additional_platforms_content: '
266
- for_nodes(\'node1\') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 120, duration: 60)) }
267
- for_nodes(\'node2\') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 60, duration: 120)) }
268
- ') do
269
+ with_test_platform_for_nodes_to_deploy(
270
+ additional_config: <<~EO_CONFIG
271
+ for_nodes('node1') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 120, duration: 60)) }
272
+ for_nodes('node2') { deployment_schedule(IceCube::Schedule.new(Time.now.utc - 60, duration: 120)) }
273
+ EO_CONFIG
274
+ ) do
269
275
  expect(test_deployer).to receive(:deployment_info_from).with(%w[node1 node2]).and_return(
270
276
  'node1' => {
271
277
  services: %w[service1],
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.2.4
4
+ version: 33.3.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-23 00:00:00.000000000 Z
11
+ date: 2021-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: range_operators
@@ -262,6 +262,20 @@ dependencies:
262
262
  - - "~>"
263
263
  - !ruby/object:Gem::Version
264
264
  version: '4.21'
265
+ - !ruby/object:Gem::Dependency
266
+ name: keepass_kpscript
267
+ requirement: !ruby/object:Gem::Requirement
268
+ requirements:
269
+ - - "~>"
270
+ - !ruby/object:Gem::Version
271
+ version: '1.0'
272
+ type: :runtime
273
+ prerelease: false
274
+ version_requirements: !ruby/object:Gem::Requirement
275
+ requirements:
276
+ - - "~>"
277
+ - !ruby/object:Gem::Version
278
+ version: '1.0'
265
279
  - !ruby/object:Gem::Dependency
266
280
  name: rspec
267
281
  requirement: !ruby/object:Gem::Requirement
@@ -323,186 +337,187 @@ description: Provides a complete toolset to help DevOps maintain, deploy, monito
323
337
  email:
324
338
  - muriel@x-aeon.com
325
339
  executables:
326
- - free_ips
327
- - setup
328
- - check-node
329
- - deploy
330
340
  - dump_nodes_json
331
- - topograph
332
- - run
333
- - report
334
- - free_veids
335
- - get_impacted_nodes
341
+ - setup
336
342
  - ssh_config
343
+ - report
337
344
  - last_deploys
338
345
  - nodes_to_deploy
346
+ - topograph
347
+ - run
348
+ - get_impacted_nodes
349
+ - check-node
350
+ - free_veids
351
+ - deploy
339
352
  - test
353
+ - free_ips
340
354
  extensions: []
341
355
  extra_rdoc_files:
342
- - CHANGELOG.md
343
- - LICENSE.md
344
356
  - README.md
357
+ - LICENSE.md
358
+ - CHANGELOG.md
359
+ - docs/tutorial.md
360
+ - docs/plugins.md
345
361
  - docs/install.md
346
- - docs/plugins/cmdb/platform_handlers.md
347
- - docs/plugins/cmdb/config.md
362
+ - docs/tutorial/01_installation.md
363
+ - docs/tutorial/03_scale.md
364
+ - docs/tutorial/02_first_node.md
365
+ - docs/tutorial/04_test.md
366
+ - docs/tutorial/05_extend_with_plugins.md
367
+ - docs/executables/deploy.md
368
+ - docs/executables/get_impacted_nodes.md
369
+ - docs/executables/ssh_config.md
370
+ - docs/executables/last_deploys.md
371
+ - docs/executables/setup.md
372
+ - docs/executables/check-node.md
373
+ - docs/executables/report.md
374
+ - docs/executables/run.md
375
+ - docs/executables/topograph.md
376
+ - docs/executables/free_ips.md
377
+ - docs/executables/test.md
378
+ - docs/executables/dump_nodes_json.md
379
+ - docs/executables/free_veids.md
380
+ - docs/executables/nodes_to_deploy.md
381
+ - docs/api.md
382
+ - docs/plugins_create.md
348
383
  - docs/plugins/cmdb/host_ip.md
349
384
  - docs/plugins/cmdb/host_keys.md
350
- - docs/plugins/log/remote_fs.md
351
- - docs/plugins/provisioner/docker.md
352
- - docs/plugins/provisioner/podman.md
353
- - docs/plugins/provisioner/proxmox.md
354
- - docs/plugins/action/bash.md
355
- - docs/plugins/action/scp.md
356
- - docs/plugins/action/remote_bash.md
357
- - docs/plugins/action/interactive.md
358
- - docs/plugins/action/ruby.md
359
- - docs/plugins/connector/ssh.md
360
- - docs/plugins/connector/local.md
385
+ - docs/plugins/cmdb/config.md
386
+ - docs/plugins/cmdb/platform_handlers.md
361
387
  - docs/plugins/report/confluence.md
362
388
  - docs/plugins/report/mediawiki.md
363
389
  - docs/plugins/report/stdout.md
364
390
  - docs/plugins/secrets_reader/thycotic.md
365
391
  - docs/plugins/secrets_reader/cli.md
366
- - docs/plugins/test/file_system_hdfs.md
392
+ - docs/plugins/secrets_reader/keepass.md
393
+ - docs/plugins/provisioner/docker.md
394
+ - docs/plugins/provisioner/podman.md
395
+ - docs/plugins/provisioner/proxmox.md
396
+ - docs/plugins/action/ruby.md
397
+ - docs/plugins/action/interactive.md
398
+ - docs/plugins/action/remote_bash.md
399
+ - docs/plugins/action/bash.md
400
+ - docs/plugins/action/scp.md
401
+ - docs/plugins/log/remote_fs.md
402
+ - docs/plugins/platform_handler/serverless_chef.md
403
+ - docs/plugins/platform_handler/yaml_inventory.md
367
404
  - docs/plugins/test/mounts.md
368
- - docs/plugins/test/idempotence.md
369
- - docs/plugins/test/orphan_files.md
370
- - docs/plugins/test/github_ci.md
371
- - docs/plugins/test/veids.md
405
+ - docs/plugins/test/file_system.md
406
+ - docs/plugins/test/jenkins_ci_masters_ok.md
407
+ - docs/plugins/test/check_from_scratch.md
408
+ - docs/plugins/test/connection.md
409
+ - docs/plugins/test/local_users.md
372
410
  - docs/plugins/test/check_deploy_and_idempotence.md
373
- - docs/plugins/test/hostname.md
411
+ - docs/plugins/test/ip.md
412
+ - docs/plugins/test/public_ips.md
413
+ - docs/plugins/test/can_be_checked.md
414
+ - docs/plugins/test/file_system_hdfs.md
415
+ - docs/plugins/test/private_ips.md
416
+ - docs/plugins/test/deploy_removes_root_access.md
374
417
  - docs/plugins/test/bitbucket_conf.md
418
+ - docs/plugins/test/deploy_freshness.md
419
+ - docs/plugins/test/vulnerabilities.md
420
+ - docs/plugins/test/hostname.md
421
+ - docs/plugins/test/orphan_files.md
375
422
  - docs/plugins/test/deploy_from_scratch.md
376
- - docs/plugins/test/divergence.md
377
- - docs/plugins/test/check_from_scratch.md
378
- - docs/plugins/test/deploy_removes_root_access.md
379
- - docs/plugins/test/file_system.md
423
+ - docs/plugins/test/jenkins_ci_conf.md
380
424
  - docs/plugins/test/spectre.md
381
- - docs/plugins/test/vulnerabilities.md
425
+ - docs/plugins/test/github_ci.md
426
+ - docs/plugins/test/divergence.md
427
+ - docs/plugins/test/idempotence.md
428
+ - docs/plugins/test/veids.md
382
429
  - docs/plugins/test/ports.md
383
- - docs/plugins/test/linear_strategy.md
384
- - docs/plugins/test/jenkins_ci_conf.md
385
- - docs/plugins/test/can_be_checked.md
386
- - docs/plugins/test/public_ips.md
387
- - docs/plugins/test/connection.md
388
- - docs/plugins/test/jenkins_ci_masters_ok.md
389
- - docs/plugins/test/deploy_freshness.md
390
430
  - docs/plugins/test/executables.md
391
- - docs/plugins/test/private_ips.md
392
- - docs/plugins/test/ip.md
393
- - docs/plugins/test/local_users.md
394
- - docs/plugins/platform_handler/serverless_chef.md
395
- - docs/plugins/platform_handler/yaml_inventory.md
431
+ - docs/plugins/test/linear_strategy.md
432
+ - docs/plugins/connector/local.md
433
+ - docs/plugins/connector/ssh.md
396
434
  - docs/plugins/test_report/confluence.md
397
435
  - docs/plugins/test_report/stdout.md
398
- - docs/config_dsl.md
399
- - docs/executables/free_veids.md
400
- - docs/executables/last_deploys.md
401
- - docs/executables/nodes_to_deploy.md
402
- - docs/executables/topograph.md
403
- - docs/executables/report.md
404
- - docs/executables/get_impacted_nodes.md
405
- - docs/executables/run.md
406
- - docs/executables/deploy.md
407
- - docs/executables/dump_nodes_json.md
408
- - docs/executables/ssh_config.md
409
- - docs/executables/test.md
410
- - docs/executables/setup.md
411
- - docs/executables/free_ips.md
412
- - docs/executables/check-node.md
413
- - docs/plugins_create.md
414
- - docs/tutorial/01_installation.md
415
- - docs/tutorial/04_test.md
416
- - docs/tutorial/03_scale.md
417
- - docs/tutorial/02_first_node.md
418
- - docs/tutorial/05_extend_with_plugins.md
419
- - docs/tutorial.md
420
- - docs/api.md
421
- - docs/executables.md
422
436
  - docs/gen/mermaid/README.md-0.png
423
- - docs/gen/mermaid/docs/executables/test.md-0.png
424
- - docs/gen/mermaid/docs/executables/last_deploys.md-0.png
425
- - docs/gen/mermaid/docs/executables/free_ips.md-0.png
426
- - docs/gen/mermaid/docs/executables/deploy.md-0.png
437
+ - docs/gen/mermaid/docs/executables/run.md-0.png
438
+ - docs/gen/mermaid/docs/executables/free_veids.md-0.png
439
+ - docs/gen/mermaid/docs/executables/ssh_config.md-0.png
427
440
  - docs/gen/mermaid/docs/executables/check-node.md-0.png
428
441
  - docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png
442
+ - docs/gen/mermaid/docs/executables/last_deploys.md-0.png
429
443
  - docs/gen/mermaid/docs/executables/setup.md-0.png
430
- - docs/gen/mermaid/docs/executables/report.md-0.png
431
- - docs/gen/mermaid/docs/executables/free_veids.md-0.png
432
- - docs/gen/mermaid/docs/executables/ssh_config.md-0.png
433
444
  - docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png
434
- - docs/gen/mermaid/docs/executables/run.md-0.png
435
- - docs/plugins.md
436
- - examples/tutorial/04_test/my-service-conf-repo/service_web-hello.rb
437
- - examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb
438
- - examples/tutorial/04_test/my-service-conf-repo/my-service.conf.erb
439
- - examples/tutorial/04_test/my-service-conf-repo/inventory.yaml
440
- - examples/tutorial/04_test/my-platforms/hpc_config.rb
441
- - examples/tutorial/04_test/my-platforms/Gemfile
442
- - examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
443
- - examples/tutorial/04_test/my-platforms/my_commands.bash
444
- - examples/tutorial/04_test/web_docker_image/hello_world.txt
445
- - examples/tutorial/04_test/web_docker_image/test.bash
446
- - examples/tutorial/04_test/web_docker_image/hpc_root.key.pub
447
- - examples/tutorial/04_test/web_docker_image/Dockerfile
448
- - examples/tutorial/04_test/web_docker_image/hpc_root.key
449
- - examples/tutorial/04_test/web_docker_image/start.sh
450
- - examples/tutorial/04_test/web_docker_image/main.go
451
- - examples/tutorial/04_test/node/my-service.conf
452
- - examples/tutorial/03_scale/my-service-conf-repo/service_web-hello.rb
453
- - examples/tutorial/03_scale/my-service-conf-repo/service_my-service.rb
454
- - examples/tutorial/03_scale/my-service-conf-repo/my-service.conf.erb
455
- - examples/tutorial/03_scale/my-service-conf-repo/inventory.yaml
456
- - examples/tutorial/03_scale/my-platforms/hpc_config.rb
457
- - examples/tutorial/03_scale/my-platforms/Gemfile
458
- - examples/tutorial/03_scale/my-platforms/my_commands.bash
459
- - examples/tutorial/03_scale/web_docker_image/hello_world.txt
460
- - examples/tutorial/03_scale/web_docker_image/test.bash
461
- - examples/tutorial/03_scale/web_docker_image/hpc_root.key.pub
462
- - examples/tutorial/03_scale/web_docker_image/Dockerfile
463
- - examples/tutorial/03_scale/web_docker_image/hpc_root.key
464
- - examples/tutorial/03_scale/web_docker_image/start.sh
465
- - examples/tutorial/03_scale/web_docker_image/main.go
466
- - examples/tutorial/03_scale/node/my-service.conf
467
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_web-hello.rb
468
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb
469
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/my-service.conf.erb
470
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml
471
- - examples/tutorial/05_extend_with_plugins/my-platforms/hpc_config.rb
472
- - examples/tutorial/05_extend_with_plugins/my-platforms/Gemfile
473
- - examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
474
- - examples/tutorial/05_extend_with_plugins/my-platforms/my_commands.bash
445
+ - docs/gen/mermaid/docs/executables/deploy.md-0.png
446
+ - docs/gen/mermaid/docs/executables/report.md-0.png
447
+ - docs/gen/mermaid/docs/executables/test.md-0.png
448
+ - docs/gen/mermaid/docs/executables/free_ips.md-0.png
449
+ - docs/config_dsl.md
450
+ - docs/executables.md
451
+ - examples/bare/hpc_config.rb
452
+ - examples/bare/Gemfile
453
+ - examples/tutorial/02_first_node/node/my-service.conf
454
+ - examples/tutorial/02_first_node/my-service-conf-repo/service_my-service.rb
455
+ - examples/tutorial/02_first_node/my-service-conf-repo/my-service.conf.erb
456
+ - examples/tutorial/02_first_node/my-service-conf-repo/inventory.yaml
457
+ - examples/tutorial/02_first_node/my-platforms/hpc_config.rb
458
+ - examples/tutorial/02_first_node/my-platforms/Gemfile
459
+ - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/hosts.json
460
+ - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-gcc.bash
461
+ - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-python.bash
475
462
  - examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key.pub
476
463
  - examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
477
464
  - examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key
465
+ - examples/tutorial/05_extend_with_plugins/node/my-service.conf
478
466
  - examples/tutorial/05_extend_with_plugins/web_docker_image/hello_world.txt
479
- - examples/tutorial/05_extend_with_plugins/web_docker_image/test.bash
467
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/start.sh
480
468
  - examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key.pub
469
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/main.go
470
+ - examples/tutorial/05_extend_with_plugins/web_docker_image/test.bash
481
471
  - examples/tutorial/05_extend_with_plugins/web_docker_image/Dockerfile
482
472
  - examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key
483
- - examples/tutorial/05_extend_with_plugins/web_docker_image/start.sh
484
- - examples/tutorial/05_extend_with_plugins/web_docker_image/main.go
485
- - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/hosts.json
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
473
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb
474
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/my-service.conf.erb
475
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml
476
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_web-hello.rb
477
+ - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/my_hpc_plugins.gemspec
488
478
  - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/report/web_report.rb
489
- - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/test/root_space.rb
490
479
  - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/platform_handler/json_bash.rb
491
- - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/my_hpc_plugins.gemspec
492
- - examples/tutorial/05_extend_with_plugins/node/my-service.conf
493
- - examples/tutorial/02_first_node/my-service-conf-repo/service_my-service.rb
494
- - examples/tutorial/02_first_node/my-service-conf-repo/my-service.conf.erb
495
- - examples/tutorial/02_first_node/my-service-conf-repo/inventory.yaml
496
- - examples/tutorial/02_first_node/my-platforms/hpc_config.rb
497
- - examples/tutorial/02_first_node/my-platforms/Gemfile
498
- - examples/tutorial/02_first_node/node/my-service.conf
480
+ - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/test/root_space.rb
481
+ - examples/tutorial/05_extend_with_plugins/my-platforms/hpc_config.rb
482
+ - examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
483
+ - examples/tutorial/05_extend_with_plugins/my-platforms/Gemfile
484
+ - examples/tutorial/05_extend_with_plugins/my-platforms/my_commands.bash
499
485
  - examples/tutorial/01_installation/my-platforms/hpc_config.rb
500
486
  - examples/tutorial/01_installation/my-platforms/Gemfile
487
+ - examples/tutorial/03_scale/node/my-service.conf
488
+ - examples/tutorial/03_scale/web_docker_image/hello_world.txt
489
+ - examples/tutorial/03_scale/web_docker_image/start.sh
490
+ - examples/tutorial/03_scale/web_docker_image/hpc_root.key.pub
491
+ - examples/tutorial/03_scale/web_docker_image/main.go
492
+ - examples/tutorial/03_scale/web_docker_image/test.bash
493
+ - examples/tutorial/03_scale/web_docker_image/Dockerfile
494
+ - examples/tutorial/03_scale/web_docker_image/hpc_root.key
495
+ - examples/tutorial/03_scale/my-service-conf-repo/service_my-service.rb
496
+ - examples/tutorial/03_scale/my-service-conf-repo/my-service.conf.erb
497
+ - examples/tutorial/03_scale/my-service-conf-repo/inventory.yaml
498
+ - examples/tutorial/03_scale/my-service-conf-repo/service_web-hello.rb
499
+ - examples/tutorial/03_scale/my-platforms/hpc_config.rb
500
+ - examples/tutorial/03_scale/my-platforms/Gemfile
501
+ - examples/tutorial/03_scale/my-platforms/my_commands.bash
502
+ - examples/tutorial/04_test/node/my-service.conf
503
+ - examples/tutorial/04_test/web_docker_image/hello_world.txt
504
+ - examples/tutorial/04_test/web_docker_image/start.sh
505
+ - examples/tutorial/04_test/web_docker_image/hpc_root.key.pub
506
+ - examples/tutorial/04_test/web_docker_image/main.go
507
+ - examples/tutorial/04_test/web_docker_image/test.bash
508
+ - examples/tutorial/04_test/web_docker_image/Dockerfile
509
+ - examples/tutorial/04_test/web_docker_image/hpc_root.key
510
+ - examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb
511
+ - examples/tutorial/04_test/my-service-conf-repo/my-service.conf.erb
512
+ - examples/tutorial/04_test/my-service-conf-repo/inventory.yaml
513
+ - examples/tutorial/04_test/my-service-conf-repo/service_web-hello.rb
514
+ - examples/tutorial/04_test/my-platforms/hpc_config.rb
515
+ - examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
516
+ - examples/tutorial/04_test/my-platforms/Gemfile
517
+ - examples/tutorial/04_test/my-platforms/my_commands.bash
501
518
  - examples/localhost/hpc_config.rb
502
- - examples/localhost/Gemfile
503
519
  - examples/localhost/inventory.yaml
504
- - examples/bare/hpc_config.rb
505
- - examples/bare/Gemfile
520
+ - examples/localhost/Gemfile
506
521
  files:
507
522
  - CHANGELOG.md
508
523
  - LICENSE.md
@@ -574,6 +589,7 @@ files:
574
589
  - docs/plugins/report/mediawiki.md
575
590
  - docs/plugins/report/stdout.md
576
591
  - docs/plugins/secrets_reader/cli.md
592
+ - docs/plugins/secrets_reader/keepass.md
577
593
  - docs/plugins/secrets_reader/thycotic.md
578
594
  - docs/plugins/test/bitbucket_conf.md
579
595
  - docs/plugins/test/can_be_checked.md
@@ -735,6 +751,7 @@ files:
735
751
  - lib/hybrid_platforms_conductor/hpc_plugins/report/stdout.rb
736
752
  - lib/hybrid_platforms_conductor/hpc_plugins/report/templates/confluence_inventory.html.erb
737
753
  - lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/cli.rb
754
+ - lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/keepass.rb
738
755
  - lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/my_secrets_reader_plugin.rb.sample
739
756
  - lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/thycotic.rb
740
757
  - lib/hybrid_platforms_conductor/hpc_plugins/test/bitbucket_conf.rb
@@ -787,6 +804,7 @@ files:
787
804
  - lib/hybrid_platforms_conductor/provisioner.rb
788
805
  - lib/hybrid_platforms_conductor/report.rb
789
806
  - lib/hybrid_platforms_conductor/reports_handler.rb
807
+ - lib/hybrid_platforms_conductor/safe_merge.rb
790
808
  - lib/hybrid_platforms_conductor/secrets_reader.rb
791
809
  - lib/hybrid_platforms_conductor/services_handler.rb
792
810
  - lib/hybrid_platforms_conductor/test.rb
@@ -849,6 +867,7 @@ files:
849
867
  - spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/state_spec.rb
850
868
  - spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/stop_spec.rb
851
869
  - spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/cli_spec.rb
870
+ - spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/keepass_spec.rb
852
871
  - spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/thycotic_spec.rb
853
872
  - spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/config_spec.rb
854
873
  - spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/host_ip_spec.rb