hybrid_platforms_conductor 33.7.0 → 33.7.4

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: 6f8aa219b3d74ccbf0a7c32f61bef98a29c1eb5d11f27cca6b99d900def8e0e3
4
- data.tar.gz: b596c459a7a6bed546aff37f193ddff42c4df488b79d6a3f1bcd7018f5cbfb57
3
+ metadata.gz: c8966575d336257c3b6aa9371ac750a69dcdff5e1817a84847cf9895348bddf4
4
+ data.tar.gz: 065a1a3ff659e3d0a7c129884208a8299d378df383c57d67c0a6f2447464cefa
5
5
  SHA512:
6
- metadata.gz: 65b4206c0dee17a47d60160d50aae67cdf4b2271443c74738dfb12d9b11088c84a05371019e46227f007f590df7689d1aa760a495bd5635902edbcd12d18f74e
7
- data.tar.gz: 1a4e327d499f63595ae15d7bb145bf48d837332b26d12b4e2b8b7761c6c2acd87080302f9f36b07fe1cbf064f3fc0af355ecb6a392b29506eff766bfeccc4031
6
+ metadata.gz: 6f838436afdc89e284a0c6071b6fd06ef754361b615be00a8489f9d8991cdbb35546c19823035e677cfaaeff8cb3aac347cc005932dc3515a4578fdfccc7989d
7
+ data.tar.gz: 1b544cf67be8b647cd07e8a37a59f448cde59f36a6711353b3b6c6b1264f4d5ec5bd6db0b77b409166e5062b4ffb613cf3ef54067c8c051513f3b7995c2c05aa
data/CHANGELOG.md CHANGED
@@ -1,3 +1,45 @@
1
+ # [v33.7.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.3...v33.7.4) (2021-08-04 14:21:08)
2
+
3
+ ## Global changes
4
+ ### Patches
5
+
6
+ * [[Bugfix(platform_handler_serverless_chef)] Corrected clean-up of deployment directory on nodes](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0fdfe17f7c08da089881bc48fcd9cb1b487a95a2)
7
+
8
+ ## Changes for platform_handler_serverless_chef
9
+ ### Patches
10
+
11
+ * [[Bugfix(platform_handler_serverless_chef)] Corrected clean-up of deployment directory on nodes](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0fdfe17f7c08da089881bc48fcd9cb1b487a95a2)
12
+
13
+ # [v33.7.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.2...v33.7.3) (2021-07-16 12:05:04)
14
+
15
+ ### Patches
16
+
17
+ * [[Hotfix] Increase port timeout](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a450e6ee74bcd14a0f4f7bfcdad826928ad7918c)
18
+
19
+ # [v33.7.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.1...v33.7.2) (2021-07-15 14:37:59)
20
+
21
+ ## Global changes
22
+ ### Patches
23
+
24
+ * [[Hotfix(provisioner_docker)] Increase Futex timeout to cope with image building time](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/52a03adbfc176f49800793acb3ab28026eb56289)
25
+
26
+ ## Changes for provisioner_docker
27
+ ### Patches
28
+
29
+ * [[Hotfix(provisioner_docker)] Increase Futex timeout to cope with image building time](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/52a03adbfc176f49800793acb3ab28026eb56289)
30
+
31
+ # [v33.7.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.7.0...v33.7.1) (2021-07-09 17:17:18)
32
+
33
+ ## Global changes
34
+ ### Patches
35
+
36
+ * [[Bugfix(platform_handler_serverless_chef)] [#93] Make sure chef runs use colors in their output](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/14352425115cf46b92e4c747b2e34e3734314288)
37
+
38
+ ## Changes for platform_handler_serverless_chef
39
+ ### Patches
40
+
41
+ * [[Bugfix(platform_handler_serverless_chef)] [#93] Make sure chef runs use colors in their output](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/14352425115cf46b92e4c747b2e34e3734314288)
42
+
1
43
  # [v33.7.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v33.6.0...v33.7.0) (2021-07-09 16:32:25)
2
44
 
3
45
  ### Features
@@ -241,18 +241,25 @@ module HybridPlatformsConductor
241
241
  '--json-attributes', "nodes/#{node}.json"
242
242
  ]
243
243
  client_options << '--why-run' if use_why_run
244
+ # client_options.concat ['--log_level', 'debug'] if log_debug?
245
+ # 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.
246
+ client_env = {
247
+ 'SSL_CERT_DIR' => '/etc/ssl/certs',
248
+ 'TERM' => 'xterm-256color'
249
+ }
244
250
  if @nodes_handler.get_use_local_chef_of(node)
245
251
  # Just run the chef-client directly from the packaged repository
246
- sudo_prefix = @cmd_runner.root? ? '' : 'sudo '
252
+ sudo_prefix = @cmd_runner.root? ? '' : 'sudo -E '
247
253
  [
248
254
  {
249
255
  bash: [
250
256
  'set -e',
251
257
  "cd #{package_dir}"
252
258
  ] +
253
- gems_to_install.map { |(gem_name, gem_version)| "#{sudo_prefix}SSL_CERT_DIR=/etc/ssl/certs /opt/chef-workstation/bin/chef gem install #{gem_name} --version \"#{gem_version}\"" } +
259
+ client_env.map { |var_name, value| "export #{var_name}=#{value}" } +
260
+ gems_to_install.map { |(gem_name, gem_version)| "#{sudo_prefix}/opt/chef-workstation/bin/chef gem install #{gem_name} --version \"#{gem_version}\"" } +
254
261
  [
255
- "#{sudo_prefix}SSL_CERT_DIR=/etc/ssl/certs /opt/chef-workstation/bin/chef-client #{client_options.join(' ')}"
262
+ "#{sudo_prefix}/opt/chef-workstation/bin/chef-client #{client_options.join(' ')}"
256
263
  ]
257
264
  }
258
265
  ]
@@ -270,7 +277,7 @@ module HybridPlatformsConductor
270
277
  remote_bash: [
271
278
  'set -e',
272
279
  'set -o pipefail',
273
- "if [ -n \"$(command -v apt)\" ]; then #{sudo}apt update && #{sudo}apt install -y curl build-essential ; else #{sudo}yum groupinstall 'Development Tools' && #{sudo}yum install -y curl ; fi",
280
+ "if [ -n \"$(command -v apt)\" ]; then #{sudo}apt update && #{sudo}apt install -y curl build-essential expect ; else #{sudo}yum groupinstall 'Development Tools' && #{sudo}yum install -y curl expect ; fi",
274
281
  'mkdir -p ./hpc_deploy',
275
282
  'rm -rf ./hpc_deploy/tmp',
276
283
  'mkdir -p ./hpc_deploy/tmp',
@@ -281,16 +288,19 @@ module HybridPlatformsConductor
281
288
  },
282
289
  {
283
290
  scp: { package_dir => './hpc_deploy' },
284
- remote_bash: [
285
- 'set -e',
286
- "cd ./hpc_deploy/#{package_name}"
287
- ] +
288
- gems_to_install.map { |(gem_name, gem_version)| "#{sudo}SSL_CERT_DIR=/etc/ssl/certs /opt/chef/embedded/bin/gem install #{gem_name} --version \"#{gem_version}\"" } +
289
- [
290
- "#{sudo}SSL_CERT_DIR=/etc/ssl/certs /opt/chef/bin/chef-client #{client_options.join(' ')}",
291
- 'cd ..'
291
+ remote_bash: {
292
+ commands: [
293
+ 'set -e',
294
+ "cd ./hpc_deploy/#{package_name}"
292
295
  ] +
293
- (log_debug? ? [] : ["#{sudo}rm -rf ./hpc_deploy/#{package_name}"])
296
+ gems_to_install.map { |(gem_name, gem_version)| "#{sudo}/opt/chef/embedded/bin/gem install #{gem_name} --version \"#{gem_version}\"" } +
297
+ [
298
+ "#{sudo}unbuffer /opt/chef/bin/chef-client #{client_options.join(' ')}",
299
+ 'cd -'
300
+ ] +
301
+ (log_debug? ? [] : ["#{sudo}rm -rf ./hpc_deploy/#{package_name}"]),
302
+ env: client_env
303
+ }
294
304
  }
295
305
  ]
296
306
  end
@@ -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.0'
3
+ VERSION = '33.7.4'
4
4
 
5
5
  end
@@ -46,7 +46,7 @@ describe HybridPlatformsConductor::HpcPlugins::PlatformHandler::ServerlessChef d
46
46
  remote_bash: [
47
47
  'set -e',
48
48
  'set -o pipefail',
49
- "if [ -n \"$(command -v apt)\" ]; then #{sudo}apt update && #{sudo}apt install -y curl build-essential ; else #{sudo}yum groupinstall 'Development Tools' && #{sudo}yum install -y curl ; fi",
49
+ "if [ -n \"$(command -v apt)\" ]; then #{sudo}apt update && #{sudo}apt install -y curl build-essential expect ; else #{sudo}yum groupinstall 'Development Tools' && #{sudo}yum install -y curl expect ; fi",
50
50
  'mkdir -p ./hpc_deploy',
51
51
  'rm -rf ./hpc_deploy/tmp',
52
52
  'mkdir -p ./hpc_deploy/tmp',
@@ -57,16 +57,22 @@ describe HybridPlatformsConductor::HpcPlugins::PlatformHandler::ServerlessChef d
57
57
  },
58
58
  {
59
59
  scp: { "#{repository}/dist/#{env}/#{policy}" => './hpc_deploy' },
60
- remote_bash: [
61
- 'set -e',
62
- "cd ./hpc_deploy/#{policy}"
63
- ] +
64
- gems_install_cmds.map { |gem_install_cmd| "#{sudo}SSL_CERT_DIR=/etc/ssl/certs /opt/chef/embedded/bin/#{gem_install_cmd}" } +
65
- [
66
- "#{sudo}SSL_CERT_DIR=/etc/ssl/certs /opt/chef/bin/chef-client --local-mode --chef-license accept --json-attributes nodes/#{node}.json#{check_mode ? ' --why-run' : ''}",
67
- 'cd ..',
68
- "#{sudo}rm -rf ./hpc_deploy/#{policy}"
69
- ]
60
+ remote_bash: {
61
+ commands: [
62
+ 'set -e',
63
+ "cd ./hpc_deploy/#{policy}"
64
+ ] +
65
+ gems_install_cmds.map { |gem_install_cmd| "#{sudo}/opt/chef/embedded/bin/#{gem_install_cmd}" } +
66
+ [
67
+ "#{sudo}unbuffer /opt/chef/bin/chef-client --local-mode --chef-license accept --json-attributes nodes/#{node}.json#{check_mode ? ' --why-run' : ''}",
68
+ 'cd -',
69
+ "#{sudo}rm -rf ./hpc_deploy/#{policy}"
70
+ ],
71
+ env: {
72
+ 'SSL_CERT_DIR' => '/etc/ssl/certs',
73
+ 'TERM' => 'xterm-256color'
74
+ }
75
+ }
70
76
  }
71
77
  ]
72
78
  end
@@ -323,7 +329,9 @@ describe HybridPlatformsConductor::HpcPlugins::PlatformHandler::ServerlessChef d
323
329
  bash: [
324
330
  'set -e',
325
331
  "cd #{repository}/dist/prod/test_policy_1",
326
- 'sudo SSL_CERT_DIR=/etc/ssl/certs /opt/chef-workstation/bin/chef-client --local-mode --chef-license accept --json-attributes nodes/local.json'
332
+ 'export SSL_CERT_DIR=/etc/ssl/certs',
333
+ 'export TERM=xterm-256color',
334
+ 'sudo -E /opt/chef-workstation/bin/chef-client --local-mode --chef-license accept --json-attributes nodes/local.json'
327
335
  ]
328
336
  }
329
337
  ]
@@ -352,10 +360,12 @@ describe HybridPlatformsConductor::HpcPlugins::PlatformHandler::ServerlessChef d
352
360
  bash: [
353
361
  'set -e',
354
362
  "cd #{repository}/dist/prod/test_policy_1",
355
- 'sudo SSL_CERT_DIR=/etc/ssl/certs /opt/chef-workstation/bin/chef gem install my_gem_1 --version "0.0.1"',
356
- 'sudo SSL_CERT_DIR=/etc/ssl/certs /opt/chef-workstation/bin/chef gem install my_gem_2 --version "0.0.2"',
357
- 'sudo SSL_CERT_DIR=/etc/ssl/certs /opt/chef-workstation/bin/chef gem install my_gem_3 --version "~> 1.3"',
358
- 'sudo SSL_CERT_DIR=/etc/ssl/certs /opt/chef-workstation/bin/chef-client --local-mode --chef-license accept --json-attributes nodes/local.json'
363
+ 'export SSL_CERT_DIR=/etc/ssl/certs',
364
+ 'export TERM=xterm-256color',
365
+ 'sudo -E /opt/chef-workstation/bin/chef gem install my_gem_1 --version "0.0.1"',
366
+ 'sudo -E /opt/chef-workstation/bin/chef gem install my_gem_2 --version "0.0.2"',
367
+ 'sudo -E /opt/chef-workstation/bin/chef gem install my_gem_3 --version "~> 1.3"',
368
+ 'sudo -E /opt/chef-workstation/bin/chef-client --local-mode --chef-license accept --json-attributes nodes/local.json'
359
369
  ]
360
370
  }
361
371
  ]
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.0
4
+ version: 33.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muriel Salvan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-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