hybrid_platforms_conductor 33.7.1 → 33.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7fbebabd55f289dc72c1882d4d02b1898035593a78cc1396e63e9f3f97405b4
4
- data.tar.gz: 1b0394745277f497c7083828be1b813fe6ff60c0c6c14f22a0808e88c6d2911f
3
+ metadata.gz: 6cd97aeaa58547169eee76dd4605b3ee08b9188c718bbef6d3757186d7a6dfdc
4
+ data.tar.gz: e054326d38480c3480578b44e78c10f481e82b750486f5c1c8007ee2491731da
5
5
  SHA512:
6
- metadata.gz: ae3267357ec72113fc39933fd63572dce1017d27162248e6416d7621f543701e20ddc5d155eb4cb7785f572a975304399a6a512940d8c8017af9389251cbc49b
7
- data.tar.gz: b8eac4d69391f5ed8a5ce9e7c495549cbfac878a9d8847e568f17989a1ed944da7a16bcc9deeebacbee522dc6cd56b937baa0dc50b2ed1070f5a247a090bee9c
6
+ metadata.gz: d63c0cf64b6c5163ed7c1f6cb0c927c325d18c21dbf286b5dce91578f4fa5b4a1e6119b41ac877be20812b475306b3f7ab444474e482ebe36c0735b90c7ae9b7
7
+ data.tar.gz: 23cdf3242c78e993c3df565f1123eea67c5aca527218122e22a0ed1fcacfbf33adf3396aaebbdeb82666cbdf3e7ace44ecfd4a1c453e0fe8d38fc7d4064c7b89
data/CHANGELOG.md CHANGED
@@ -1,3 +1,45 @@
1
+ # [v33.8.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.4...v33.8.0) (2021-08-04 15:55:54)
2
+
3
+ ## Global changes
4
+ ### Patches
5
+
6
+ * [[Feature(platform_handler_serverless_chef)] Integrate testadmin public key while deploying in local mode](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/6083463bf3bc760c393b786515db59af89315333)
7
+
8
+ ## Changes for platform_handler_serverless_chef
9
+ ### Features
10
+
11
+ * [[Feature(platform_handler_serverless_chef)] Integrate testadmin public key while deploying in local mode](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/6083463bf3bc760c393b786515db59af89315333)
12
+
13
+ # [v33.7.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.3...v33.7.4) (2021-08-04 14:21:08)
14
+
15
+ ## Global changes
16
+ ### Patches
17
+
18
+ * [[Bugfix(platform_handler_serverless_chef)] Corrected clean-up of deployment directory on nodes](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0fdfe17f7c08da089881bc48fcd9cb1b487a95a2)
19
+
20
+ ## Changes for platform_handler_serverless_chef
21
+ ### Patches
22
+
23
+ * [[Bugfix(platform_handler_serverless_chef)] Corrected clean-up of deployment directory on nodes](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0fdfe17f7c08da089881bc48fcd9cb1b487a95a2)
24
+
25
+ # [v33.7.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.2...v33.7.3) (2021-07-16 12:05:04)
26
+
27
+ ### Patches
28
+
29
+ * [[Hotfix] Increase port timeout](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a450e6ee74bcd14a0f4f7bfcdad826928ad7918c)
30
+
31
+ # [v33.7.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.1...v33.7.2) (2021-07-15 14:37:59)
32
+
33
+ ## Global changes
34
+ ### Patches
35
+
36
+ * [[Hotfix(provisioner_docker)] Increase Futex timeout to cope with image building time](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/52a03adbfc176f49800793acb3ab28026eb56289)
37
+
38
+ ## Changes for provisioner_docker
39
+ ### Patches
40
+
41
+ * [[Hotfix(provisioner_docker)] Increase Futex timeout to cope with image building time](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/52a03adbfc176f49800793acb3ab28026eb56289)
42
+
1
43
  # [v33.7.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.0...v33.7.1) (2021-07-09 17:17:18)
2
44
 
3
45
  ## Global changes
@@ -190,6 +190,15 @@ module HybridPlatformsConductor
190
190
  secrets_file = "#{@repository_path}/#{package_dir}/data_bags/hpc_secrets/hpc_secrets.json"
191
191
  FileUtils.mkdir_p(File.dirname(secrets_file))
192
192
  File.write(secrets_file, secrets.merge(id: 'hpc_secrets').to_json)
193
+ # Make the testadmin public key available for deployment for hpc_test cookbook
194
+ testadmin_pub_key = "#{@config.hybrid_platforms_dir}/testadmin.key.pub"
195
+ if local_environment && File.exist?(testadmin_pub_key)
196
+ Dir.glob("#{@repository_path}/#{package_dir}/cookbook_artifacts/hpc_test-*") do |hpc_test_cookbook_path|
197
+ hpc_test_files_dir = "#{hpc_test_cookbook_path}/files/default"
198
+ FileUtils.mkdir_p hpc_test_files_dir
199
+ FileUtils.cp(testadmin_pub_key, "#{hpc_test_files_dir}/testadmin.key.pub")
200
+ end
201
+ end
193
202
  # Remember the package info
194
203
  File.write(package_info_file, package_info.to_json)
195
204
  end
@@ -241,6 +250,7 @@ module HybridPlatformsConductor
241
250
  '--json-attributes', "nodes/#{node}.json"
242
251
  ]
243
252
  client_options << '--why-run' if use_why_run
253
+ # client_options.concat ['--log_level', 'debug'] if log_debug?
244
254
  # Force setting of TERM variable and usage of unbuffer to get colored output from chef-client even if executed through a non-interactive SSH session.
245
255
  client_env = {
246
256
  'SSL_CERT_DIR' => '/etc/ssl/certs',
@@ -295,7 +305,7 @@ module HybridPlatformsConductor
295
305
  gems_to_install.map { |(gem_name, gem_version)| "#{sudo}/opt/chef/embedded/bin/gem install #{gem_name} --version \"#{gem_version}\"" } +
296
306
  [
297
307
  "#{sudo}unbuffer /opt/chef/bin/chef-client #{client_options.join(' ')}",
298
- 'cd ..'
308
+ 'cd -'
299
309
  ] +
300
310
  (log_debug? ? [] : ["#{sudo}rm -rf ./hpc_deploy/#{package_name}"]),
301
311
  env: client_env
@@ -40,7 +40,7 @@ module HybridPlatformsConductor
40
40
  docker_image = nil
41
41
  image_futex_file = "#{Dir.tmpdir}/hpc_docker_image_futexes/#{image_tag}"
42
42
  FileUtils.mkdir_p File.dirname(image_futex_file)
43
- Futex.new(image_futex_file).open do
43
+ Futex.new(image_futex_file, timeout: 600).open do
44
44
  docker_image = ::Docker::Image.all.find { |search_image| !search_image.info['RepoTags'].nil? && search_image.info['RepoTags'].include?("#{image_tag}:latest") }
45
45
  unless docker_image
46
46
  log_debug "[ #{@node}/#{@environment} ] - Creating Docker image #{image_tag}..."
@@ -42,7 +42,7 @@ module HybridPlatformsConductor
42
42
  # Result::
43
43
  # * Integer: The timeout in seconds
44
44
  def default_timeout
45
- 60
45
+ 300
46
46
  end
47
47
 
48
48
  # Provision a running instance for the needed node and environment.
@@ -1,5 +1,5 @@
1
1
  module HybridPlatformsConductor
2
2
 
3
- VERSION = '33.7.1'
3
+ VERSION = '33.8.0'
4
4
 
5
5
  end
@@ -51,6 +51,7 @@ describe HybridPlatformsConductor::HpcPlugins::PlatformHandler::ServerlessChef d
51
51
  [
52
52
  %r{^cd #{Regexp.escape(repository)} &&\s+sudo rm -rf dist/#{Regexp.escape(env)}/#{Regexp.escape(policy)} &&\s+/opt/chef-workstation/bin/chef export #{Regexp.escape(policy_file)} dist/#{Regexp.escape(env)}/#{Regexp.escape(policy)} --chef-license accept#{data_bags ? " && cp -ar data_bags/ dist/#{Regexp.escape(env)}/#{Regexp.escape(policy)}/" : ''}$},
53
53
  proc do
54
+ # Mock the packaging in the dist directory
54
55
  package_dir = "#{repository}/dist/#{env}/#{policy}"
55
56
  FileUtils.mkdir_p package_dir
56
57
  FileUtils.cp_r("#{repository}/data_bags", "#{package_dir}/") if data_bags
@@ -329,6 +330,25 @@ describe HybridPlatformsConductor::HpcPlugins::PlatformHandler::ServerlessChef d
329
330
  end
330
331
  end
331
332
 
333
+ it 'packages the repository with a testadmin public key' do
334
+ with_serverless_chef_platforms('hpc_test') do |platform, repository|
335
+ File.write("#{ENV['hpc_platforms']}/testadmin.key.pub", 'ssh-rsa 12345 testadmin@test.com')
336
+ with_packaging_mocked(
337
+ repository,
338
+ policy_file: 'policyfiles/test_policy.local.rb',
339
+ env: 'local',
340
+ cookbook_metadata: {
341
+ 'hpc_test-1234' => {}
342
+ }
343
+ ) do
344
+ platform.package(services: { 'node' => %w[test_policy] }, secrets: {}, local_environment: true)
345
+ testadmin_key_pub = Dir.glob("#{repository}/dist/local/test_policy/cookbook_artifacts/hpc_test-*/files/default/testadmin.key.pub").first
346
+ expect(testadmin_key_pub).not_to eq nil
347
+ expect(File.read(testadmin_key_pub)).to eq 'ssh-rsa 12345 testadmin@test.com'
348
+ end
349
+ end
350
+ end
351
+
332
352
  end
333
353
 
334
354
  end
@@ -65,7 +65,7 @@ describe HybridPlatformsConductor::HpcPlugins::PlatformHandler::ServerlessChef d
65
65
  gems_install_cmds.map { |gem_install_cmd| "#{sudo}/opt/chef/embedded/bin/#{gem_install_cmd}" } +
66
66
  [
67
67
  "#{sudo}unbuffer /opt/chef/bin/chef-client --local-mode --chef-license accept --json-attributes nodes/#{node}.json#{check_mode ? ' --why-run' : ''}",
68
- 'cd ..',
68
+ 'cd -',
69
69
  "#{sudo}rm -rf ./hpc_deploy/#{policy}"
70
70
  ],
71
71
  env: {
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.7.1
4
+ version: 33.8.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-07-09 00:00:00.000000000 Z
11
+ date: 2021-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: range_operators
@@ -365,187 +365,187 @@ description: Provides a complete toolset to help DevOps maintain, deploy, monito
365
365
  email:
366
366
  - muriel@x-aeon.com
367
367
  executables:
368
- - dump_nodes_json
369
368
  - setup
370
- - ssh_config
371
369
  - report
370
+ - get_impacted_nodes
372
371
  - last_deploys
373
- - nodes_to_deploy
374
372
  - topograph
373
+ - dump_nodes_json
374
+ - free_ips
375
+ - ssh_config
376
+ - deploy
375
377
  - run
376
- - get_impacted_nodes
378
+ - test
379
+ - nodes_to_deploy
377
380
  - check-node
378
381
  - free_veids
379
- - deploy
380
- - test
381
- - free_ips
382
382
  extensions: []
383
383
  extra_rdoc_files:
384
+ - CHANGELOG.md
384
385
  - README.md
385
386
  - LICENSE.md
386
- - CHANGELOG.md
387
- - docs/tutorial.md
388
- - docs/plugins.md
389
- - docs/install.md
390
- - docs/tutorial/01_installation.md
391
- - docs/tutorial/03_scale.md
392
- - docs/tutorial/02_first_node.md
393
- - docs/tutorial/04_test.md
394
- - docs/tutorial/05_extend_with_plugins.md
395
- - docs/executables/deploy.md
396
- - docs/executables/get_impacted_nodes.md
397
- - docs/executables/ssh_config.md
398
- - docs/executables/last_deploys.md
399
- - docs/executables/setup.md
400
- - docs/executables/check-node.md
401
- - docs/executables/report.md
402
- - docs/executables/run.md
403
- - docs/executables/topograph.md
404
- - docs/executables/free_ips.md
405
- - docs/executables/test.md
406
- - docs/executables/dump_nodes_json.md
407
- - docs/executables/free_veids.md
408
- - docs/executables/nodes_to_deploy.md
409
- - docs/api.md
410
- - docs/plugins_create.md
411
- - docs/plugins/cmdb/host_ip.md
412
- - docs/plugins/cmdb/host_keys.md
413
- - docs/plugins/cmdb/config.md
414
- - docs/plugins/cmdb/platform_handlers.md
387
+ - docs/plugins/connector/local.md
388
+ - docs/plugins/connector/ssh.md
415
389
  - docs/plugins/report/confluence.md
416
390
  - docs/plugins/report/mediawiki.md
417
391
  - docs/plugins/report/stdout.md
418
- - docs/plugins/secrets_reader/thycotic.md
419
- - docs/plugins/secrets_reader/cli.md
420
- - docs/plugins/secrets_reader/keepass.md
392
+ - docs/plugins/log/remote_fs.md
393
+ - docs/plugins/provisioner/proxmox.md
421
394
  - docs/plugins/provisioner/docker.md
422
395
  - docs/plugins/provisioner/podman.md
423
- - docs/plugins/provisioner/proxmox.md
424
- - docs/plugins/action/ruby.md
425
- - docs/plugins/action/interactive.md
426
- - docs/plugins/action/remote_bash.md
427
- - docs/plugins/action/bash.md
428
- - docs/plugins/action/scp.md
429
- - docs/plugins/log/remote_fs.md
430
- - docs/plugins/platform_handler/serverless_chef.md
396
+ - docs/plugins/secrets_reader/keepass.md
397
+ - docs/plugins/secrets_reader/thycotic.md
398
+ - docs/plugins/secrets_reader/cli.md
431
399
  - docs/plugins/platform_handler/yaml_inventory.md
432
- - docs/plugins/test/mounts.md
433
- - docs/plugins/test/file_system.md
434
- - docs/plugins/test/jenkins_ci_masters_ok.md
400
+ - 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
404
+ - docs/plugins/cmdb/config.md
405
+ - 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
409
+ - docs/plugins/test/bitbucket_conf.md
435
410
  - docs/plugins/test/check_from_scratch.md
436
- - docs/plugins/test/connection.md
437
- - docs/plugins/test/local_users.md
438
- - docs/plugins/test/check_deploy_and_idempotence.md
411
+ - docs/plugins/test/file_system.md
439
412
  - docs/plugins/test/ip.md
440
- - docs/plugins/test/public_ips.md
441
- - docs/plugins/test/can_be_checked.md
442
- - docs/plugins/test/file_system_hdfs.md
413
+ - docs/plugins/test/connection.md
414
+ - docs/plugins/test/ports.md
415
+ - docs/plugins/test/spectre.md
416
+ - docs/plugins/test/veids.md
417
+ - docs/plugins/test/jenkins_ci_conf.md
443
418
  - docs/plugins/test/private_ips.md
444
- - docs/plugins/test/deploy_removes_root_access.md
445
- - docs/plugins/test/bitbucket_conf.md
446
- - docs/plugins/test/deploy_freshness.md
447
- - docs/plugins/test/vulnerabilities.md
448
- - docs/plugins/test/hostname.md
449
419
  - docs/plugins/test/orphan_files.md
450
- - docs/plugins/test/deploy_from_scratch.md
451
- - docs/plugins/test/jenkins_ci_conf.md
452
- - docs/plugins/test/spectre.md
420
+ - docs/plugins/test/file_system_hdfs.md
421
+ - docs/plugins/test/public_ips.md
453
422
  - docs/plugins/test/github_ci.md
454
- - docs/plugins/test/divergence.md
423
+ - docs/plugins/test/mounts.md
424
+ - docs/plugins/test/check_deploy_and_idempotence.md
425
+ - docs/plugins/test/deploy_freshness.md
455
426
  - docs/plugins/test/idempotence.md
456
- - docs/plugins/test/veids.md
457
- - docs/plugins/test/ports.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
458
431
  - docs/plugins/test/executables.md
459
432
  - docs/plugins/test/linear_strategy.md
460
- - docs/plugins/connector/local.md
461
- - docs/plugins/connector/ssh.md
462
- - docs/plugins/test_report/confluence.md
463
- - docs/plugins/test_report/stdout.md
433
+ - docs/plugins/test/deploy_from_scratch.md
434
+ - docs/plugins/test/divergence.md
435
+ - docs/plugins/action/interactive.md
436
+ - docs/plugins/action/scp.md
437
+ - docs/plugins/action/bash.md
438
+ - docs/plugins/action/ruby.md
439
+ - docs/plugins/action/remote_bash.md
464
440
  - docs/gen/mermaid/README.md-0.png
465
441
  - docs/gen/mermaid/docs/executables/run.md-0.png
466
- - docs/gen/mermaid/docs/executables/free_veids.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
467
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
468
448
  - docs/gen/mermaid/docs/executables/check-node.md-0.png
469
449
  - docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png
470
450
  - docs/gen/mermaid/docs/executables/last_deploys.md-0.png
471
- - docs/gen/mermaid/docs/executables/setup.md-0.png
472
451
  - docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png
473
- - docs/gen/mermaid/docs/executables/deploy.md-0.png
474
- - docs/gen/mermaid/docs/executables/report.md-0.png
475
- - docs/gen/mermaid/docs/executables/test.md-0.png
476
- - docs/gen/mermaid/docs/executables/free_ips.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
459
+ - docs/api.md
460
+ - docs/tutorial.md
461
+ - docs/executables/ssh_config.md
462
+ - docs/executables/topograph.md
463
+ - docs/executables/setup.md
464
+ - docs/executables/deploy.md
465
+ - docs/executables/test.md
466
+ - docs/executables/last_deploys.md
467
+ - docs/executables/free_ips.md
468
+ - docs/executables/report.md
469
+ - docs/executables/check-node.md
470
+ - docs/executables/run.md
471
+ - docs/executables/get_impacted_nodes.md
472
+ - docs/executables/dump_nodes_json.md
473
+ - docs/executables/free_veids.md
474
+ - docs/executables/nodes_to_deploy.md
477
475
  - docs/config_dsl.md
478
476
  - docs/executables.md
479
- - examples/bare/hpc_config.rb
480
- - examples/bare/Gemfile
481
- - examples/tutorial/02_first_node/node/my-service.conf
482
- - examples/tutorial/02_first_node/my-service-conf-repo/service_my-service.rb
483
- - examples/tutorial/02_first_node/my-service-conf-repo/my-service.conf.erb
484
- - examples/tutorial/02_first_node/my-service-conf-repo/inventory.yaml
485
- - examples/tutorial/02_first_node/my-platforms/hpc_config.rb
486
- - examples/tutorial/02_first_node/my-platforms/Gemfile
487
- - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/hosts.json
488
- - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-gcc.bash
489
- - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-python.bash
477
+ - docs/plugins_create.md
478
+ - docs/plugins.md
479
+ - 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
+ - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/platform_handler/json_bash.rb
482
+ - 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
490
484
  - examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key.pub
491
485
  - examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
492
- - examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key
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
488
+ - examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/hosts.json
493
489
  - examples/tutorial/05_extend_with_plugins/node/my-service.conf
494
- - examples/tutorial/05_extend_with_plugins/web_docker_image/hello_world.txt
495
- - examples/tutorial/05_extend_with_plugins/web_docker_image/start.sh
496
- - examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key.pub
497
- - examples/tutorial/05_extend_with_plugins/web_docker_image/main.go
498
- - examples/tutorial/05_extend_with_plugins/web_docker_image/test.bash
499
- - examples/tutorial/05_extend_with_plugins/web_docker_image/Dockerfile
500
- - examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key
501
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb
502
490
  - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/my-service.conf.erb
503
- - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml
491
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb
504
492
  - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_web-hello.rb
505
- - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/my_hpc_plugins.gemspec
506
- - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/report/web_report.rb
507
- - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/platform_handler/json_bash.rb
508
- - examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/test/root_space.rb
509
- - examples/tutorial/05_extend_with_plugins/my-platforms/hpc_config.rb
510
- - examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
493
+ - examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml
511
494
  - examples/tutorial/05_extend_with_plugins/my-platforms/Gemfile
512
495
  - examples/tutorial/05_extend_with_plugins/my-platforms/my_commands.bash
513
- - examples/tutorial/01_installation/my-platforms/hpc_config.rb
496
+ - examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
497
+ - 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
514
511
  - examples/tutorial/01_installation/my-platforms/Gemfile
515
- - examples/tutorial/03_scale/node/my-service.conf
516
- - examples/tutorial/03_scale/web_docker_image/hello_world.txt
517
- - examples/tutorial/03_scale/web_docker_image/start.sh
518
- - examples/tutorial/03_scale/web_docker_image/hpc_root.key.pub
519
- - examples/tutorial/03_scale/web_docker_image/main.go
520
- - examples/tutorial/03_scale/web_docker_image/test.bash
521
- - examples/tutorial/03_scale/web_docker_image/Dockerfile
522
- - examples/tutorial/03_scale/web_docker_image/hpc_root.key
523
- - examples/tutorial/03_scale/my-service-conf-repo/service_my-service.rb
524
- - examples/tutorial/03_scale/my-service-conf-repo/my-service.conf.erb
525
- - examples/tutorial/03_scale/my-service-conf-repo/inventory.yaml
526
- - examples/tutorial/03_scale/my-service-conf-repo/service_web-hello.rb
527
- - examples/tutorial/03_scale/my-platforms/hpc_config.rb
528
- - examples/tutorial/03_scale/my-platforms/Gemfile
529
- - examples/tutorial/03_scale/my-platforms/my_commands.bash
512
+ - examples/tutorial/01_installation/my-platforms/hpc_config.rb
530
513
  - examples/tutorial/04_test/node/my-service.conf
531
- - examples/tutorial/04_test/web_docker_image/hello_world.txt
532
- - examples/tutorial/04_test/web_docker_image/start.sh
533
- - examples/tutorial/04_test/web_docker_image/hpc_root.key.pub
534
- - examples/tutorial/04_test/web_docker_image/main.go
535
- - examples/tutorial/04_test/web_docker_image/test.bash
536
- - examples/tutorial/04_test/web_docker_image/Dockerfile
537
- - examples/tutorial/04_test/web_docker_image/hpc_root.key
538
- - examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb
539
514
  - examples/tutorial/04_test/my-service-conf-repo/my-service.conf.erb
540
- - examples/tutorial/04_test/my-service-conf-repo/inventory.yaml
515
+ - examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb
541
516
  - examples/tutorial/04_test/my-service-conf-repo/service_web-hello.rb
542
- - examples/tutorial/04_test/my-platforms/hpc_config.rb
543
- - examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
517
+ - examples/tutorial/04_test/my-service-conf-repo/inventory.yaml
544
518
  - examples/tutorial/04_test/my-platforms/Gemfile
545
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
540
+ - examples/tutorial/03_scale/web_docker_image/Dockerfile
541
+ - examples/tutorial/03_scale/web_docker_image/hello_world.txt
542
+ - 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
546
547
  - examples/localhost/hpc_config.rb
547
548
  - examples/localhost/inventory.yaml
548
- - examples/localhost/Gemfile
549
549
  files:
550
550
  - CHANGELOG.md
551
551
  - LICENSE.md