hybrid_platforms_conductor 32.13.0 → 32.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +42 -0
- data/README.md +10 -3
- data/bin/get_impacted_nodes +1 -1
- data/bin/setup +6 -1
- data/docs/executables/check-node.md +1 -1
- data/docs/executables/deploy.md +1 -1
- data/docs/executables/free_ips.md +1 -1
- data/docs/executables/free_veids.md +1 -1
- data/docs/executables/get_impacted_nodes.md +1 -1
- data/docs/executables/last_deploys.md +1 -1
- data/docs/executables/nodes_to_deploy.md +1 -1
- data/docs/executables/report.md +1 -1
- data/docs/executables/run.md +1 -1
- data/docs/executables/setup.md +1 -1
- data/docs/executables/ssh_config.md +1 -1
- data/docs/executables/test.md +1 -1
- data/docs/plugins.md +1 -0
- data/docs/plugins/platform_handler/serverless_chef.md +105 -0
- data/docs/tutorial.md +10 -6
- data/docs/tutorial/01_installation.md +14 -12
- data/docs/tutorial/02_first_node.md +14 -12
- data/docs/tutorial/03_scale.md +14 -12
- data/docs/tutorial/04_test.md +26 -14
- data/docs/tutorial/05_extend_with_plugins.md +17 -17
- data/examples/tutorial/01_installation/my-platforms/Gemfile +3 -0
- data/examples/tutorial/01_installation/my-platforms/hpc_config.rb +0 -0
- data/examples/tutorial/02_first_node/my-platforms/Gemfile +3 -0
- data/examples/tutorial/02_first_node/my-platforms/hpc_config.rb +1 -0
- data/examples/tutorial/02_first_node/my-service-conf-repo/inventory.yaml +13 -0
- data/examples/tutorial/02_first_node/my-service-conf-repo/my-service.conf.erb +3 -0
- data/examples/tutorial/02_first_node/my-service-conf-repo/service_my-service.rb +58 -0
- data/examples/tutorial/02_first_node/node/my-service.conf +4 -0
- data/examples/tutorial/03_scale/my-platforms/Gemfile +3 -0
- data/examples/tutorial/03_scale/my-platforms/hpc_config.rb +1 -0
- data/examples/tutorial/03_scale/my-platforms/my_commands.bash +2 -0
- data/examples/tutorial/03_scale/my-service-conf-repo/inventory.yaml +90 -0
- data/examples/tutorial/03_scale/my-service-conf-repo/my-service.conf.erb +3 -0
- data/examples/tutorial/03_scale/my-service-conf-repo/service_my-service.rb +58 -0
- data/examples/tutorial/03_scale/my-service-conf-repo/service_web-hello.rb +43 -0
- data/examples/tutorial/03_scale/node/my-service.conf +4 -0
- data/examples/tutorial/03_scale/web_docker_image/Dockerfile +33 -0
- data/examples/tutorial/03_scale/web_docker_image/hello_world.txt +1 -0
- data/examples/tutorial/03_scale/web_docker_image/hpc_root.key +27 -0
- data/examples/tutorial/03_scale/web_docker_image/hpc_root.key.pub +1 -0
- data/examples/tutorial/03_scale/web_docker_image/main.go +43 -0
- data/examples/tutorial/03_scale/web_docker_image/start.sh +7 -0
- data/examples/tutorial/03_scale/web_docker_image/test.bash +6 -0
- data/examples/tutorial/04_test/my-platforms/Gemfile +3 -0
- data/examples/tutorial/04_test/my-platforms/hpc_config.rb +12 -0
- data/examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile +13 -0
- data/examples/tutorial/04_test/my-platforms/my_commands.bash +2 -0
- data/examples/tutorial/04_test/my-service-conf-repo/inventory.yaml +100 -0
- data/examples/tutorial/04_test/my-service-conf-repo/my-service.conf.erb +3 -0
- data/examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb +58 -0
- data/examples/tutorial/04_test/my-service-conf-repo/service_web-hello.rb +43 -0
- data/examples/tutorial/04_test/node/my-service.conf +4 -0
- data/examples/tutorial/04_test/web_docker_image/Dockerfile +33 -0
- data/examples/tutorial/04_test/web_docker_image/hello_world.txt +1 -0
- data/examples/tutorial/04_test/web_docker_image/hpc_root.key +27 -0
- data/examples/tutorial/04_test/web_docker_image/hpc_root.key.pub +1 -0
- data/examples/tutorial/04_test/web_docker_image/main.go +43 -0
- data/examples/tutorial/04_test/web_docker_image/start.sh +7 -0
- data/examples/tutorial/04_test/web_docker_image/test.bash +6 -0
- data/examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/hosts.json +12 -0
- data/examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-gcc.bash +14 -0
- data/examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-python.bash +14 -0
- data/examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile +20 -0
- data/examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key +27 -0
- data/examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key.pub +1 -0
- data/examples/tutorial/05_extend_with_plugins/my-platforms/Gemfile +4 -0
- data/examples/tutorial/05_extend_with_plugins/my-platforms/hpc_config.rb +13 -0
- data/examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile +13 -0
- data/examples/tutorial/05_extend_with_plugins/my-platforms/my_commands.bash +2 -0
- data/examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml +100 -0
- data/examples/tutorial/05_extend_with_plugins/my-service-conf-repo/my-service.conf.erb +3 -0
- data/examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb +58 -0
- data/examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_web-hello.rb +43 -0
- data/examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/platform_handler/json_bash.rb +115 -0
- data/examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/report/web_report.rb +52 -0
- data/examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/test/root_space.rb +44 -0
- data/examples/tutorial/05_extend_with_plugins/my_hpc_plugins/my_hpc_plugins.gemspec +15 -0
- data/examples/tutorial/05_extend_with_plugins/node/my-service.conf +4 -0
- data/examples/tutorial/05_extend_with_plugins/web_docker_image/Dockerfile +33 -0
- data/examples/tutorial/05_extend_with_plugins/web_docker_image/hello_world.txt +1 -0
- data/examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key +27 -0
- data/examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key.pub +1 -0
- data/examples/tutorial/05_extend_with_plugins/web_docker_image/main.go +43 -0
- data/examples/tutorial/05_extend_with_plugins/web_docker_image/start.sh +7 -0
- data/examples/tutorial/05_extend_with_plugins/web_docker_image/test.bash +6 -0
- data/lib/hybrid_platforms_conductor/deployer.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef.rb +440 -0
- data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef/dsl_parser.rb +51 -0
- data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef/recipes_tree_builder.rb +271 -0
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/vulnerabilities.rb +1 -0
- data/lib/hybrid_platforms_conductor/nodes_handler.rb +9 -5
- data/lib/hybrid_platforms_conductor/version.rb +1 -1
- data/spec/hybrid_platforms_conductor_test.rb +3 -0
- data/spec/hybrid_platforms_conductor_test/api/deployer/provisioner_spec.rb +23 -0
- data/spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs_plugins_api_spec.rb +11 -0
- data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/config_dsl_spec.rb +17 -0
- data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/deploy_output_parsing_spec.rb +94 -0
- data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/diff_impacts_spec.rb +317 -0
- data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/inventory_spec.rb +65 -0
- data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/packaging_spec.rb +213 -0
- data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/services_deployment_spec.rb +268 -0
- data/spec/hybrid_platforms_conductor_test/helpers/serverless_chef_helpers.rb +53 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/1_node/chef_versions.yml +3 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/1_node/nodes/node.json +14 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/1_node/policyfiles/test_policy.rb +3 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/chef_versions.yml +3 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/data_bags/my_bag/my_item.json +4 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/nodes/node.json +14 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/policyfiles/test_policy.rb +3 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_1/recipes/default.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/libraries/default.rb +4 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/recipes/default.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/recipes/other_recipe.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/resources/my_resource.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/nodes/node1.json +10 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/nodes/node2.json +10 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/policyfiles/test_policy_1.rb +4 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/policyfiles/test_policy_2.rb +4 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/config.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/cookbooks/test_cookbook_1/recipes/default.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/nodes/node1.json +10 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/nodes/node2.json +10 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/libraries/default.rb +4 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/recipes/default.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/recipes/other_recipe.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/resources/my_resource.rb +1 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/policyfiles/test_policy_1.rb +4 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/policyfiles/test_policy_2.rb +4 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/chef_versions.yml +3 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/nodes/local.json +10 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/nodes/node1.json +10 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/nodes/node2.json +10 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/policyfiles/test_policy_1.rb +3 -0
- data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/policyfiles/test_policy_2.rb +3 -0
- data/tools/generate_mermaid +1 -1
- metadata +260 -86
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef'
|
2
|
+
|
3
|
+
module HybridPlatformsConductorTest
|
4
|
+
|
5
|
+
module Helpers
|
6
|
+
|
7
|
+
module ServerlessChefHelpers
|
8
|
+
|
9
|
+
# Setup a platforms config using test repository names
|
10
|
+
#
|
11
|
+
# Parameters::
|
12
|
+
# * *names* (String or Hash<String, String>): The test repository name (taken from the repositories/ folder), or a Hash of names and their corresponding test repository source name
|
13
|
+
# * *additional_config* (String): Additional config to append after the platform declaration [default: '']
|
14
|
+
# * *as_git* (Boolean): Should we initialize the repository as a git repo? [default: false]
|
15
|
+
# * Proc: Code called when repository is setup
|
16
|
+
# * Parameters::
|
17
|
+
# If there was only 1 repository:
|
18
|
+
# * *platform* (PlatformHandler): The platform handler to be tested
|
19
|
+
# * *repository* (String): Repository path
|
20
|
+
# If there was multiple repositories:
|
21
|
+
# * *repositories* (Hash<PlatformHandler,String>): Set of repositories, per platform handler
|
22
|
+
def with_serverless_chef_platforms(names, additional_config: '', as_git: false)
|
23
|
+
names = { names => names } unless names.is_a?(Hash)
|
24
|
+
with_repositories(names.keys, as_git: as_git) do |repositories|
|
25
|
+
repositories.each do |name, repository|
|
26
|
+
# Copy the content of the test repository in the temporary one
|
27
|
+
FileUtils.cp_r "#{__dir__}/../serverless_chef_repositories/#{names[name]}/.", repository
|
28
|
+
end
|
29
|
+
with_platforms(repositories.values.map { |repository| "serverless_chef_platform path: '#{repository}'\n" }.join + additional_config) do
|
30
|
+
repositories = Hash[names.keys.map do |name|
|
31
|
+
[
|
32
|
+
test_platforms_handler.platform(name),
|
33
|
+
repositories[name]
|
34
|
+
]
|
35
|
+
end]
|
36
|
+
test_platforms_handler.inject_dependencies(
|
37
|
+
nodes_handler: test_nodes_handler,
|
38
|
+
actions_executor: test_actions_executor
|
39
|
+
)
|
40
|
+
if repositories.size == 1
|
41
|
+
yield *repositories.first
|
42
|
+
else
|
43
|
+
yield repositories
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"name": "node",
|
3
|
+
"normal": {
|
4
|
+
"description": "Single test node",
|
5
|
+
"image": "debian_9",
|
6
|
+
"private_ips": ["172.16.0.1"],
|
7
|
+
"property1": {
|
8
|
+
"property11": "value11"
|
9
|
+
},
|
10
|
+
"property2": "value2"
|
11
|
+
},
|
12
|
+
"policy_name": "test_policy",
|
13
|
+
"policy_group": "test_group"
|
14
|
+
}
|
data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/nodes/node.json
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"name": "node",
|
3
|
+
"normal": {
|
4
|
+
"description": "Single test node",
|
5
|
+
"image": "debian_9",
|
6
|
+
"private_ips": ["172.16.0.1"],
|
7
|
+
"property1": {
|
8
|
+
"property11": "value11"
|
9
|
+
},
|
10
|
+
"property2": "value2"
|
11
|
+
},
|
12
|
+
"policy_name": "test_policy",
|
13
|
+
"policy_group": "test_group"
|
14
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
# Default recipe
|
@@ -0,0 +1 @@
|
|
1
|
+
# Recipe code
|
@@ -0,0 +1 @@
|
|
1
|
+
# Recipe code
|
@@ -0,0 +1 @@
|
|
1
|
+
# Resource code
|
data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/config.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
cookbook_path %w[cookbooks] + (ENV['hpc_test_cookbooks_path'] ? ENV['hpc_test_cookbooks_path'].split(':') : [])
|
@@ -0,0 +1 @@
|
|
1
|
+
# Default recipe
|
@@ -0,0 +1 @@
|
|
1
|
+
# Recipe code
|
@@ -0,0 +1 @@
|
|
1
|
+
# Recipe code
|
@@ -0,0 +1 @@
|
|
1
|
+
# Resource code
|
data/tools/generate_mermaid
CHANGED
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.14.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-05-
|
11
|
+
date: 2021-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: range_operators
|
@@ -281,116 +281,182 @@ description: Provides a complete toolset to help DevOps maintain, deploy, monito
|
|
281
281
|
email:
|
282
282
|
- muriel@x-aeon.com
|
283
283
|
executables:
|
284
|
-
- dump_nodes_json
|
285
|
-
- get_impacted_nodes
|
286
284
|
- topograph
|
285
|
+
- test
|
286
|
+
- check-node
|
287
|
+
- get_impacted_nodes
|
288
|
+
- ssh_config
|
289
|
+
- dump_nodes_json
|
287
290
|
- run
|
288
|
-
- free_veids
|
289
|
-
- nodes_to_deploy
|
290
291
|
- setup
|
291
|
-
- free_ips
|
292
|
-
- check-node
|
293
292
|
- report
|
294
|
-
- test
|
295
293
|
- last_deploys
|
296
|
-
-
|
294
|
+
- nodes_to_deploy
|
295
|
+
- free_ips
|
296
|
+
- free_veids
|
297
297
|
- deploy
|
298
298
|
extensions: []
|
299
299
|
extra_rdoc_files:
|
300
|
+
- README.md
|
300
301
|
- CHANGELOG.md
|
301
302
|
- LICENSE.md
|
302
|
-
-
|
303
|
+
- docs/tutorial/05_extend_with_plugins.md
|
304
|
+
- docs/tutorial/04_test.md
|
305
|
+
- docs/tutorial/03_scale.md
|
306
|
+
- docs/tutorial/01_installation.md
|
307
|
+
- docs/tutorial/02_first_node.md
|
308
|
+
- docs/tutorial.md
|
309
|
+
- docs/install.md
|
310
|
+
- docs/plugins_create.md
|
311
|
+
- docs/executables.md
|
312
|
+
- docs/api.md
|
303
313
|
- docs/plugins.md
|
314
|
+
- docs/gen/mermaid/README.md-0.png
|
315
|
+
- docs/gen/mermaid/docs/executables/check-node.md-0.png
|
316
|
+
- docs/gen/mermaid/docs/executables/ssh_config.md-0.png
|
317
|
+
- docs/gen/mermaid/docs/executables/last_deploys.md-0.png
|
318
|
+
- docs/gen/mermaid/docs/executables/run.md-0.png
|
319
|
+
- docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png
|
320
|
+
- docs/gen/mermaid/docs/executables/test.md-0.png
|
321
|
+
- docs/gen/mermaid/docs/executables/free_ips.md-0.png
|
322
|
+
- docs/gen/mermaid/docs/executables/free_veids.md-0.png
|
323
|
+
- docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png
|
324
|
+
- docs/gen/mermaid/docs/executables/report.md-0.png
|
325
|
+
- docs/gen/mermaid/docs/executables/deploy.md-0.png
|
326
|
+
- docs/gen/mermaid/docs/executables/setup.md-0.png
|
327
|
+
- docs/executables/test.md
|
328
|
+
- docs/executables/free_ips.md
|
329
|
+
- docs/executables/run.md
|
330
|
+
- docs/executables/get_impacted_nodes.md
|
331
|
+
- docs/executables/last_deploys.md
|
332
|
+
- docs/executables/nodes_to_deploy.md
|
333
|
+
- docs/executables/setup.md
|
334
|
+
- docs/executables/deploy.md
|
335
|
+
- docs/executables/report.md
|
336
|
+
- docs/executables/check-node.md
|
337
|
+
- docs/executables/free_veids.md
|
338
|
+
- docs/executables/ssh_config.md
|
339
|
+
- docs/executables/topograph.md
|
340
|
+
- docs/executables/dump_nodes_json.md
|
341
|
+
- docs/plugins/platform_handler/serverless_chef.md
|
342
|
+
- docs/plugins/platform_handler/yaml_inventory.md
|
343
|
+
- docs/plugins/provisioner/proxmox.md
|
304
344
|
- docs/plugins/provisioner/podman.md
|
305
345
|
- docs/plugins/provisioner/docker.md
|
306
|
-
- docs/plugins/
|
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
|
346
|
+
- docs/plugins/test/spectre.md
|
327
347
|
- docs/plugins/test/bitbucket_conf.md
|
328
|
-
- docs/plugins/test/
|
329
|
-
- docs/plugins/test/
|
348
|
+
- docs/plugins/test/vulnerabilities.md
|
349
|
+
- docs/plugins/test/deploy_removes_root_access.md
|
330
350
|
- docs/plugins/test/private_ips.md
|
331
|
-
- docs/plugins/test/
|
351
|
+
- docs/plugins/test/ip.md
|
332
352
|
- docs/plugins/test/orphan_files.md
|
333
|
-
- docs/plugins/test/
|
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
|
353
|
+
- docs/plugins/test/veids.md
|
338
354
|
- docs/plugins/test/executables.md
|
339
|
-
- docs/plugins/test/
|
340
|
-
- docs/plugins/test/
|
355
|
+
- docs/plugins/test/ports.md
|
356
|
+
- docs/plugins/test/hostname.md
|
357
|
+
- docs/plugins/test/divergence.md
|
358
|
+
- docs/plugins/test/deploy_freshness.md
|
341
359
|
- docs/plugins/test/deploy_from_scratch.md
|
360
|
+
- docs/plugins/test/can_be_checked.md
|
361
|
+
- docs/plugins/test/check_from_scratch.md
|
362
|
+
- docs/plugins/test/public_ips.md
|
363
|
+
- docs/plugins/test/linear_strategy.md
|
364
|
+
- docs/plugins/test/connection.md
|
365
|
+
- docs/plugins/test/check_deploy_and_idempotence.md
|
342
366
|
- docs/plugins/test/file_system.md
|
343
367
|
- docs/plugins/test/mounts.md
|
344
|
-
- docs/plugins/test/
|
345
|
-
- docs/plugins/test/
|
346
|
-
- docs/plugins/test/
|
347
|
-
- docs/plugins/test/
|
348
|
-
- docs/plugins/
|
368
|
+
- docs/plugins/test/local_users.md
|
369
|
+
- docs/plugins/test/jenkins_ci_conf.md
|
370
|
+
- docs/plugins/test/jenkins_ci_masters_ok.md
|
371
|
+
- docs/plugins/test/file_system_hdfs.md
|
372
|
+
- docs/plugins/test/idempotence.md
|
373
|
+
- docs/plugins/report/mediawiki.md
|
374
|
+
- docs/plugins/report/stdout.md
|
375
|
+
- docs/plugins/report/confluence.md
|
349
376
|
- docs/plugins/test_report/stdout.md
|
350
377
|
- docs/plugins/test_report/confluence.md
|
351
|
-
- docs/
|
352
|
-
- docs/
|
353
|
-
- docs/
|
354
|
-
- docs/
|
355
|
-
- docs/
|
356
|
-
- docs/
|
357
|
-
- docs/
|
358
|
-
- docs/
|
359
|
-
- docs/
|
360
|
-
- docs/
|
361
|
-
- docs/
|
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
|
378
|
+
- docs/plugins/connector/local.md
|
379
|
+
- docs/plugins/connector/ssh.md
|
380
|
+
- docs/plugins/action/interactive.md
|
381
|
+
- docs/plugins/action/scp.md
|
382
|
+
- docs/plugins/action/remote_bash.md
|
383
|
+
- docs/plugins/action/ruby.md
|
384
|
+
- docs/plugins/action/bash.md
|
385
|
+
- docs/plugins/cmdb/host_ip.md
|
386
|
+
- docs/plugins/cmdb/config.md
|
387
|
+
- docs/plugins/cmdb/platform_handlers.md
|
388
|
+
- docs/plugins/cmdb/host_keys.md
|
387
389
|
- docs/config_dsl.md
|
388
|
-
-
|
389
|
-
- examples/
|
390
|
+
- examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-python.bash
|
391
|
+
- examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/hosts.json
|
392
|
+
- examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-gcc.bash
|
393
|
+
- examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/platform_handler/json_bash.rb
|
394
|
+
- examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/test/root_space.rb
|
395
|
+
- examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/report/web_report.rb
|
396
|
+
- examples/tutorial/05_extend_with_plugins/my_hpc_plugins/my_hpc_plugins.gemspec
|
397
|
+
- examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_web-hello.rb
|
398
|
+
- examples/tutorial/05_extend_with_plugins/my-service-conf-repo/my-service.conf.erb
|
399
|
+
- examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb
|
400
|
+
- examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml
|
401
|
+
- examples/tutorial/05_extend_with_plugins/my-platforms/hpc_config.rb
|
402
|
+
- examples/tutorial/05_extend_with_plugins/my-platforms/Gemfile
|
403
|
+
- examples/tutorial/05_extend_with_plugins/my-platforms/my_commands.bash
|
404
|
+
- examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
|
405
|
+
- examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key.pub
|
406
|
+
- examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
|
407
|
+
- examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key
|
408
|
+
- examples/tutorial/05_extend_with_plugins/node/my-service.conf
|
409
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key.pub
|
410
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/main.go
|
411
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/start.sh
|
412
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/Dockerfile
|
413
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key
|
414
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/test.bash
|
415
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/hello_world.txt
|
416
|
+
- examples/tutorial/02_first_node/my-service-conf-repo/my-service.conf.erb
|
417
|
+
- examples/tutorial/02_first_node/my-service-conf-repo/service_my-service.rb
|
418
|
+
- examples/tutorial/02_first_node/my-service-conf-repo/inventory.yaml
|
419
|
+
- examples/tutorial/02_first_node/my-platforms/hpc_config.rb
|
420
|
+
- examples/tutorial/02_first_node/my-platforms/Gemfile
|
421
|
+
- examples/tutorial/02_first_node/node/my-service.conf
|
422
|
+
- examples/tutorial/01_installation/my-platforms/hpc_config.rb
|
423
|
+
- examples/tutorial/01_installation/my-platforms/Gemfile
|
424
|
+
- examples/tutorial/04_test/my-service-conf-repo/service_web-hello.rb
|
425
|
+
- examples/tutorial/04_test/my-service-conf-repo/my-service.conf.erb
|
426
|
+
- examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb
|
427
|
+
- examples/tutorial/04_test/my-service-conf-repo/inventory.yaml
|
428
|
+
- examples/tutorial/04_test/my-platforms/hpc_config.rb
|
429
|
+
- examples/tutorial/04_test/my-platforms/Gemfile
|
430
|
+
- examples/tutorial/04_test/my-platforms/my_commands.bash
|
431
|
+
- examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
|
432
|
+
- examples/tutorial/04_test/node/my-service.conf
|
433
|
+
- examples/tutorial/04_test/web_docker_image/hpc_root.key.pub
|
434
|
+
- examples/tutorial/04_test/web_docker_image/main.go
|
435
|
+
- examples/tutorial/04_test/web_docker_image/start.sh
|
436
|
+
- examples/tutorial/04_test/web_docker_image/Dockerfile
|
437
|
+
- examples/tutorial/04_test/web_docker_image/hpc_root.key
|
438
|
+
- examples/tutorial/04_test/web_docker_image/test.bash
|
439
|
+
- examples/tutorial/04_test/web_docker_image/hello_world.txt
|
440
|
+
- examples/tutorial/03_scale/my-service-conf-repo/service_web-hello.rb
|
441
|
+
- examples/tutorial/03_scale/my-service-conf-repo/my-service.conf.erb
|
442
|
+
- examples/tutorial/03_scale/my-service-conf-repo/service_my-service.rb
|
443
|
+
- examples/tutorial/03_scale/my-service-conf-repo/inventory.yaml
|
444
|
+
- examples/tutorial/03_scale/my-platforms/hpc_config.rb
|
445
|
+
- examples/tutorial/03_scale/my-platforms/Gemfile
|
446
|
+
- examples/tutorial/03_scale/my-platforms/my_commands.bash
|
447
|
+
- examples/tutorial/03_scale/node/my-service.conf
|
448
|
+
- examples/tutorial/03_scale/web_docker_image/hpc_root.key.pub
|
449
|
+
- examples/tutorial/03_scale/web_docker_image/main.go
|
450
|
+
- examples/tutorial/03_scale/web_docker_image/start.sh
|
451
|
+
- examples/tutorial/03_scale/web_docker_image/Dockerfile
|
452
|
+
- examples/tutorial/03_scale/web_docker_image/hpc_root.key
|
453
|
+
- examples/tutorial/03_scale/web_docker_image/test.bash
|
454
|
+
- examples/tutorial/03_scale/web_docker_image/hello_world.txt
|
390
455
|
- examples/localhost/hpc_config.rb
|
456
|
+
- examples/localhost/Gemfile
|
391
457
|
- examples/localhost/inventory.yaml
|
392
|
-
- examples/bare/Gemfile
|
393
458
|
- examples/bare/hpc_config.rb
|
459
|
+
- examples/bare/Gemfile
|
394
460
|
files:
|
395
461
|
- CHANGELOG.md
|
396
462
|
- LICENSE.md
|
@@ -452,6 +518,7 @@ files:
|
|
452
518
|
- docs/plugins/cmdb/platform_handlers.md
|
453
519
|
- docs/plugins/connector/local.md
|
454
520
|
- docs/plugins/connector/ssh.md
|
521
|
+
- docs/plugins/platform_handler/serverless_chef.md
|
455
522
|
- docs/plugins/platform_handler/yaml_inventory.md
|
456
523
|
- docs/plugins/provisioner/docker.md
|
457
524
|
- docs/plugins/provisioner/podman.md
|
@@ -500,6 +567,71 @@ files:
|
|
500
567
|
- examples/localhost/Gemfile
|
501
568
|
- examples/localhost/hpc_config.rb
|
502
569
|
- examples/localhost/inventory.yaml
|
570
|
+
- examples/tutorial/01_installation/my-platforms/Gemfile
|
571
|
+
- examples/tutorial/01_installation/my-platforms/hpc_config.rb
|
572
|
+
- examples/tutorial/02_first_node/my-platforms/Gemfile
|
573
|
+
- examples/tutorial/02_first_node/my-platforms/hpc_config.rb
|
574
|
+
- examples/tutorial/02_first_node/my-service-conf-repo/inventory.yaml
|
575
|
+
- examples/tutorial/02_first_node/my-service-conf-repo/my-service.conf.erb
|
576
|
+
- examples/tutorial/02_first_node/my-service-conf-repo/service_my-service.rb
|
577
|
+
- examples/tutorial/02_first_node/node/my-service.conf
|
578
|
+
- examples/tutorial/03_scale/my-platforms/Gemfile
|
579
|
+
- examples/tutorial/03_scale/my-platforms/hpc_config.rb
|
580
|
+
- examples/tutorial/03_scale/my-platforms/my_commands.bash
|
581
|
+
- examples/tutorial/03_scale/my-service-conf-repo/inventory.yaml
|
582
|
+
- examples/tutorial/03_scale/my-service-conf-repo/my-service.conf.erb
|
583
|
+
- examples/tutorial/03_scale/my-service-conf-repo/service_my-service.rb
|
584
|
+
- examples/tutorial/03_scale/my-service-conf-repo/service_web-hello.rb
|
585
|
+
- examples/tutorial/03_scale/node/my-service.conf
|
586
|
+
- examples/tutorial/03_scale/web_docker_image/Dockerfile
|
587
|
+
- examples/tutorial/03_scale/web_docker_image/hello_world.txt
|
588
|
+
- examples/tutorial/03_scale/web_docker_image/hpc_root.key
|
589
|
+
- examples/tutorial/03_scale/web_docker_image/hpc_root.key.pub
|
590
|
+
- examples/tutorial/03_scale/web_docker_image/main.go
|
591
|
+
- examples/tutorial/03_scale/web_docker_image/start.sh
|
592
|
+
- examples/tutorial/03_scale/web_docker_image/test.bash
|
593
|
+
- examples/tutorial/04_test/my-platforms/Gemfile
|
594
|
+
- examples/tutorial/04_test/my-platforms/hpc_config.rb
|
595
|
+
- examples/tutorial/04_test/my-platforms/images/debian_10/Dockerfile
|
596
|
+
- examples/tutorial/04_test/my-platforms/my_commands.bash
|
597
|
+
- examples/tutorial/04_test/my-service-conf-repo/inventory.yaml
|
598
|
+
- examples/tutorial/04_test/my-service-conf-repo/my-service.conf.erb
|
599
|
+
- examples/tutorial/04_test/my-service-conf-repo/service_my-service.rb
|
600
|
+
- examples/tutorial/04_test/my-service-conf-repo/service_web-hello.rb
|
601
|
+
- examples/tutorial/04_test/node/my-service.conf
|
602
|
+
- examples/tutorial/04_test/web_docker_image/Dockerfile
|
603
|
+
- examples/tutorial/04_test/web_docker_image/hello_world.txt
|
604
|
+
- examples/tutorial/04_test/web_docker_image/hpc_root.key
|
605
|
+
- examples/tutorial/04_test/web_docker_image/hpc_root.key.pub
|
606
|
+
- examples/tutorial/04_test/web_docker_image/main.go
|
607
|
+
- examples/tutorial/04_test/web_docker_image/start.sh
|
608
|
+
- examples/tutorial/04_test/web_docker_image/test.bash
|
609
|
+
- examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/hosts.json
|
610
|
+
- examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-gcc.bash
|
611
|
+
- examples/tutorial/05_extend_with_plugins/dev-servers-conf-repo/install-python.bash
|
612
|
+
- examples/tutorial/05_extend_with_plugins/dev_docker_image/Dockerfile
|
613
|
+
- examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key
|
614
|
+
- examples/tutorial/05_extend_with_plugins/dev_docker_image/hpc_root.key.pub
|
615
|
+
- examples/tutorial/05_extend_with_plugins/my-platforms/Gemfile
|
616
|
+
- examples/tutorial/05_extend_with_plugins/my-platforms/hpc_config.rb
|
617
|
+
- examples/tutorial/05_extend_with_plugins/my-platforms/images/debian_10/Dockerfile
|
618
|
+
- examples/tutorial/05_extend_with_plugins/my-platforms/my_commands.bash
|
619
|
+
- examples/tutorial/05_extend_with_plugins/my-service-conf-repo/inventory.yaml
|
620
|
+
- examples/tutorial/05_extend_with_plugins/my-service-conf-repo/my-service.conf.erb
|
621
|
+
- examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_my-service.rb
|
622
|
+
- examples/tutorial/05_extend_with_plugins/my-service-conf-repo/service_web-hello.rb
|
623
|
+
- examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/platform_handler/json_bash.rb
|
624
|
+
- examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/report/web_report.rb
|
625
|
+
- examples/tutorial/05_extend_with_plugins/my_hpc_plugins/lib/my_hpc_plugins/hpc_plugins/test/root_space.rb
|
626
|
+
- examples/tutorial/05_extend_with_plugins/my_hpc_plugins/my_hpc_plugins.gemspec
|
627
|
+
- examples/tutorial/05_extend_with_plugins/node/my-service.conf
|
628
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/Dockerfile
|
629
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/hello_world.txt
|
630
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key
|
631
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/hpc_root.key.pub
|
632
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/main.go
|
633
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/start.sh
|
634
|
+
- examples/tutorial/05_extend_with_plugins/web_docker_image/test.bash
|
503
635
|
- lib/hybrid_platforms_conductor/action.rb
|
504
636
|
- lib/hybrid_platforms_conductor/actions_executor.rb
|
505
637
|
- lib/hybrid_platforms_conductor/bitbucket.rb
|
@@ -531,6 +663,9 @@ files:
|
|
531
663
|
- lib/hybrid_platforms_conductor/hpc_plugins/connector/my_connector.rb.sample
|
532
664
|
- lib/hybrid_platforms_conductor/hpc_plugins/connector/ssh.rb
|
533
665
|
- lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/platform_handler_plugin.rb.sample
|
666
|
+
- lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef.rb
|
667
|
+
- lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef/dsl_parser.rb
|
668
|
+
- lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef/recipes_tree_builder.rb
|
534
669
|
- lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/yaml_inventory.rb
|
535
670
|
- lib/hybrid_platforms_conductor/hpc_plugins/provisioner/docker.rb
|
536
671
|
- lib/hybrid_platforms_conductor/hpc_plugins/provisioner/my_provisioner.rb.sample
|
@@ -661,6 +796,12 @@ files:
|
|
661
796
|
- spec/hybrid_platforms_conductor_test/api/nodes_handler/platform_handlers_plugins_api_spec.rb
|
662
797
|
- spec/hybrid_platforms_conductor_test/api/nodes_handler/several_platforms_spec.rb
|
663
798
|
- spec/hybrid_platforms_conductor_test/api/platform_handler_spec.rb
|
799
|
+
- spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/config_dsl_spec.rb
|
800
|
+
- spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/deploy_output_parsing_spec.rb
|
801
|
+
- spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/diff_impacts_spec.rb
|
802
|
+
- spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/inventory_spec.rb
|
803
|
+
- spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/packaging_spec.rb
|
804
|
+
- spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/services_deployment_spec.rb
|
664
805
|
- spec/hybrid_platforms_conductor_test/api/platforms_handler_spec.rb
|
665
806
|
- spec/hybrid_platforms_conductor_test/api/plugins_spec.rb
|
666
807
|
- spec/hybrid_platforms_conductor_test/api/reports_handler_spec.rb
|
@@ -715,6 +856,7 @@ files:
|
|
715
856
|
- spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
|
716
857
|
- spec/hybrid_platforms_conductor_test/helpers/provisioner_proxmox_helpers.rb
|
717
858
|
- spec/hybrid_platforms_conductor_test/helpers/reports_handler_helpers.rb
|
859
|
+
- spec/hybrid_platforms_conductor_test/helpers/serverless_chef_helpers.rb
|
718
860
|
- spec/hybrid_platforms_conductor_test/helpers/services_handler_helpers.rb
|
719
861
|
- spec/hybrid_platforms_conductor_test/helpers/tests_runner_helpers.rb
|
720
862
|
- spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem/hpc_plugins/test_plugin_type/test_plugin_id1.rb
|
@@ -724,6 +866,38 @@ files:
|
|
724
866
|
- spec/hybrid_platforms_conductor_test/platform_handler_plugins/test.rb
|
725
867
|
- spec/hybrid_platforms_conductor_test/platform_handler_plugins/test2.rb
|
726
868
|
- spec/hybrid_platforms_conductor_test/report_plugin.rb
|
869
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/1_node/chef_versions.yml
|
870
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/1_node/nodes/node.json
|
871
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/1_node/policyfiles/test_policy.rb
|
872
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/chef_versions.yml
|
873
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/data_bags/my_bag/my_item.json
|
874
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/nodes/node.json
|
875
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/policyfiles/test_policy.rb
|
876
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_1/recipes/default.rb
|
877
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/libraries/default.rb
|
878
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/recipes/default.rb
|
879
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/recipes/other_recipe.rb
|
880
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/resources/my_resource.rb
|
881
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/nodes/node1.json
|
882
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/nodes/node2.json
|
883
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/policyfiles/test_policy_1.rb
|
884
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/policyfiles/test_policy_2.rb
|
885
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/config.rb
|
886
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/cookbooks/test_cookbook_1/recipes/default.rb
|
887
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/nodes/node1.json
|
888
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/nodes/node2.json
|
889
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/libraries/default.rb
|
890
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/recipes/default.rb
|
891
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/recipes/other_recipe.rb
|
892
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/resources/my_resource.rb
|
893
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/policyfiles/test_policy_1.rb
|
894
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/policyfiles/test_policy_2.rb
|
895
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/chef_versions.yml
|
896
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/nodes/local.json
|
897
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/nodes/node1.json
|
898
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/nodes/node2.json
|
899
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/policyfiles/test_policy_1.rb
|
900
|
+
- spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_nodes/policyfiles/test_policy_2.rb
|
727
901
|
- spec/hybrid_platforms_conductor_test/test_action.rb
|
728
902
|
- spec/hybrid_platforms_conductor_test/test_connector.rb
|
729
903
|
- spec/hybrid_platforms_conductor_test/test_plugins/global.rb
|