hybrid_platforms_conductor 32.12.0 → 32.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1133 -0
- data/LICENSE.md +31 -0
- data/README.md +402 -0
- data/bin/setup +1 -1
- data/docs/api.md +349 -0
- data/docs/config_dsl.md +315 -0
- data/docs/executables.md +226 -0
- data/docs/executables/check-node.md +155 -0
- data/docs/executables/deploy.md +198 -0
- data/docs/executables/dump_nodes_json.md +110 -0
- data/docs/executables/free_ips.md +93 -0
- data/docs/executables/free_veids.md +73 -0
- data/docs/executables/get_impacted_nodes.md +94 -0
- data/docs/executables/last_deploys.md +114 -0
- data/docs/executables/nodes_to_deploy.md +139 -0
- data/docs/executables/report.md +159 -0
- data/docs/executables/run.md +126 -0
- data/docs/executables/setup.md +92 -0
- data/docs/executables/ssh_config.md +151 -0
- data/docs/executables/test.md +213 -0
- data/docs/executables/topograph.md +139 -0
- data/docs/gen/mermaid/README.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/check-node.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/deploy.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/free_ips.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/free_veids.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/last_deploys.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/report.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/run.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/setup.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/ssh_config.md-0.png +0 -0
- data/docs/gen/mermaid/docs/executables/test.md-0.png +0 -0
- data/docs/install.md +161 -0
- data/docs/plugins.md +215 -0
- data/docs/plugins/action/bash.md +37 -0
- data/docs/plugins/action/interactive.md +37 -0
- data/docs/plugins/action/remote_bash.md +67 -0
- data/docs/plugins/action/ruby.md +69 -0
- data/docs/plugins/action/scp.md +61 -0
- data/docs/plugins/cmdb/config.md +46 -0
- data/docs/plugins/cmdb/host_ip.md +33 -0
- data/docs/plugins/cmdb/host_keys.md +33 -0
- data/docs/plugins/cmdb/platform_handlers.md +33 -0
- data/docs/plugins/connector/local.md +28 -0
- data/docs/plugins/connector/ssh.md +95 -0
- data/docs/plugins/platform_handler/yaml_inventory.md +105 -0
- data/docs/plugins/provisioner/docker.md +27 -0
- data/docs/plugins/provisioner/podman.md +27 -0
- data/docs/plugins/provisioner/proxmox.md +115 -0
- data/docs/plugins/report/confluence.md +49 -0
- data/docs/plugins/report/mediawiki.md +28 -0
- data/docs/plugins/report/stdout.md +32 -0
- data/docs/plugins/test/bitbucket_conf.md +97 -0
- data/docs/plugins/test/can_be_checked.md +27 -0
- data/docs/plugins/test/check_deploy_and_idempotence.md +61 -0
- data/docs/plugins/test/check_from_scratch.md +28 -0
- data/docs/plugins/test/connection.md +27 -0
- data/docs/plugins/test/deploy_freshness.md +27 -0
- data/docs/plugins/test/deploy_from_scratch.md +28 -0
- data/docs/plugins/test/deploy_removes_root_access.md +29 -0
- data/docs/plugins/test/divergence.md +41 -0
- data/docs/plugins/test/executables.md +26 -0
- data/docs/plugins/test/file_system.md +49 -0
- data/docs/plugins/test/file_system_hdfs.md +65 -0
- data/docs/plugins/test/hostname.md +27 -0
- data/docs/plugins/test/idempotence.md +56 -0
- data/docs/plugins/test/ip.md +28 -0
- data/docs/plugins/test/jenkins_ci_conf.md +54 -0
- data/docs/plugins/test/jenkins_ci_masters_ok.md +54 -0
- data/docs/plugins/test/linear_strategy.md +26 -0
- data/docs/plugins/test/local_users.md +48 -0
- data/docs/plugins/test/mounts.md +55 -0
- data/docs/plugins/test/orphan_files.md +38 -0
- data/docs/plugins/test/ports.md +50 -0
- data/docs/plugins/test/private_ips.md +27 -0
- data/docs/plugins/test/public_ips.md +27 -0
- data/docs/plugins/test/spectre.md +26 -0
- data/docs/plugins/test/veids.md +27 -0
- data/docs/plugins/test/vulnerabilities.md +65 -0
- data/docs/plugins/test_report/confluence.md +43 -0
- data/docs/plugins/test_report/stdout.md +26 -0
- data/docs/plugins_create.md +135 -0
- data/docs/tutorial.md +61 -0
- data/docs/tutorial/01_installation.md +131 -0
- data/docs/tutorial/02_first_node.md +468 -0
- data/docs/tutorial/03_scale.md +878 -0
- data/docs/tutorial/04_test.md +977 -0
- data/docs/tutorial/05_extend_with_plugins.md +1132 -0
- data/examples/bare/Gemfile +4 -0
- data/examples/bare/hpc_config.rb +2 -0
- data/examples/localhost/Gemfile +4 -0
- data/examples/localhost/hpc_config.rb +2 -0
- data/examples/localhost/inventory.yaml +4 -0
- data/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/actions_executor.rb +1 -0
- data/lib/hybrid_platforms_conductor/deployer.rb +3 -2
- data/lib/hybrid_platforms_conductor/hpc_plugins/action/remote_bash.rb +29 -13
- data/lib/hybrid_platforms_conductor/hpc_plugins/action/scp.rb +1 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/connector/local.rb +98 -0
- data/lib/hybrid_platforms_conductor/hpc_plugins/connector/my_connector.rb.sample +2 -2
- data/lib/hybrid_platforms_conductor/hpc_plugins/connector/ssh.rb +7 -3
- data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/platform_handler_plugin.rb.sample +5 -5
- data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/yaml_inventory.rb +140 -0
- data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/proxmox.rb +5 -2
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/bitbucket_conf.rb +4 -4
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_freshness.rb +1 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_removes_root_access.rb +19 -17
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/divergence.rb +3 -0
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/hostname.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/ip.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/local_users.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/mounts.rb +4 -3
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/orphan_files.rb +2 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/spectre.rb +1 -1
- data/lib/hybrid_platforms_conductor/hpc_plugins/test/vulnerabilities.rb +9 -7
- data/lib/hybrid_platforms_conductor/hpc_plugins/test_report/confluence.rb +1 -1
- data/lib/hybrid_platforms_conductor/json_dumper.rb +1 -1
- data/lib/hybrid_platforms_conductor/platform_handler.rb +1 -1
- data/lib/hybrid_platforms_conductor/services_handler.rb +18 -16
- data/lib/hybrid_platforms_conductor/tests_runner.rb +0 -1
- data/lib/hybrid_platforms_conductor/topographer.rb +0 -1
- data/lib/hybrid_platforms_conductor/version.rb +1 -1
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/remote_bash_spec.rb +16 -0
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/local/connectable_nodes_spec.rb +30 -0
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/local/remote_actions_spec.rb +113 -0
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/cli_options_spec.rb +6 -2
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/global_helpers_spec.rb +38 -1
- data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/remote_actions_spec.rb +8 -8
- data/spec/hybrid_platforms_conductor_test/docs_spec.rb +10 -0
- data/tools/check_md +89 -0
- data/tools/generate_mermaid +75 -0
- metadata +337 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e55b2875d12648408fdd837b525b0f96728211c114062b6de22aefc59baec16
|
4
|
+
data.tar.gz: cbe6360d9b3944604c4505ea90de60ee2dfe4bd1f6d51d7a287b43ad5e3f0ee4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c62d9ea4f8b68df98961b0cbf4e48f1ecfe3ab2b48bc30474f972c93d8affc40022f71a1226d804e3045acb19ebac4b46d2eb07ced1c87ba0513e1085a8d0ed9
|
7
|
+
data.tar.gz: 7b62f76dcdd766d4232c1e40ef6f1209d337b75378912f563d835c805c20b595063aaae9126c672e2674fca692927c262ada8157318d846ae397c799b977508a
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,1133 @@
|
|
1
|
+
# [v32.13.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.13.3...v32.13.4) (2021-05-11 14:00:47)
|
2
|
+
|
3
|
+
## Global changes
|
4
|
+
### Patches
|
5
|
+
|
6
|
+
* [[fix(test_vulnerabilities)] [#56] Make sure vulnerabilities test catch errors during setup](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e058853c6794ccacec33c9ae4d740068a70dcf5f)
|
7
|
+
|
8
|
+
## Changes for test_vulnerabilities
|
9
|
+
### Patches
|
10
|
+
|
11
|
+
* [[fix(test_vulnerabilities)] [#56] Make sure vulnerabilities test catch errors during setup](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e058853c6794ccacec33c9ae4d740068a70dcf5f)
|
12
|
+
|
13
|
+
# [v32.13.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.13.2...v32.13.3) (2021-05-07 10:09:33)
|
14
|
+
|
15
|
+
### Patches
|
16
|
+
|
17
|
+
* [Add section about benefits in doc](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/23cd2b22244526e3b6705db0165f8a03e4dd88d8)
|
18
|
+
|
19
|
+
# [v32.13.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.13.1...v32.13.2) (2021-05-06 15:47:14)
|
20
|
+
|
21
|
+
### Patches
|
22
|
+
|
23
|
+
* [Better tutorial navigation](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b4454f99b0611ec8591ca83894e152a22a61e731)
|
24
|
+
|
25
|
+
# [v32.13.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.13.0...v32.13.1) (2021-05-06 14:03:16)
|
26
|
+
|
27
|
+
### Patches
|
28
|
+
|
29
|
+
* [Add tutorial files in examples](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/dfb456f031d48ba1ed6922a5f84ed659fe587ab8)
|
30
|
+
|
31
|
+
# [v32.13.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.12.0...v32.13.0) (2021-05-06 11:20:57)
|
32
|
+
|
33
|
+
### Features
|
34
|
+
|
35
|
+
* [Improved documentation + Small improvements to ease adoption](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/3c59e311271a163181fc76357b1777ba7294f567)
|
36
|
+
|
37
|
+
# [v32.12.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.11.2...v32.12.0) (2021-04-09 14:09:29)
|
38
|
+
|
39
|
+
## Global changes
|
40
|
+
### Patches
|
41
|
+
|
42
|
+
* [[Feature(connector_ssh)] [#52] Make sure remote copy files with scp work with sudo and without SSH SessionExec](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5aac50db89947dbb5f781d88737c3b2b3934785c)
|
43
|
+
|
44
|
+
## Changes for connector_ssh
|
45
|
+
### Features
|
46
|
+
|
47
|
+
* [[Feature(connector_ssh)] [#52] Make sure remote copy files with scp work with sudo and without SSH SessionExec](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5aac50db89947dbb5f781d88737c3b2b3934785c)
|
48
|
+
|
49
|
+
# [v32.11.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.11.1...v32.11.2) (2021-04-05 16:50:08)
|
50
|
+
|
51
|
+
### Patches
|
52
|
+
|
53
|
+
* [Corrected doc URLs](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/88248a83a640d854c2551f83cfd6172057c6d94a)
|
54
|
+
|
55
|
+
# [v32.11.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.11.0...v32.11.1) (2021-04-05 16:18:49)
|
56
|
+
|
57
|
+
### Patches
|
58
|
+
|
59
|
+
* [Improved documentation and removed useless debug logs in test](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/39631556421ed1293f49c5b06e381ddf53895c55)
|
60
|
+
|
61
|
+
# [v32.11.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.10.0...v32.11.0) (2021-03-31 13:14:23)
|
62
|
+
|
63
|
+
### Features
|
64
|
+
|
65
|
+
* [[#37] [Feature] Add a way to specify divergent tasks to be ignored and use it in tests](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/61562561f69392fc5ee11d977a55576c3f3b964f)
|
66
|
+
|
67
|
+
# [v32.10.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.9.1...v32.10.0) (2021-03-24 17:01:18)
|
68
|
+
|
69
|
+
## Global changes
|
70
|
+
### Patches
|
71
|
+
|
72
|
+
* [[#35] [Feature(provisioner_proxmox)] Clean leftover files in cgroups for removed containers](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0aea05de6c4cb385cc1fcc211b40e600b3746dd2)
|
73
|
+
|
74
|
+
## Changes for provisioner_proxmox
|
75
|
+
### Features
|
76
|
+
|
77
|
+
* [[#35] [Feature(provisioner_proxmox)] Clean leftover files in cgroups for removed containers](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0aea05de6c4cb385cc1fcc211b40e600b3746dd2)
|
78
|
+
|
79
|
+
# [v32.9.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.9.0...v32.9.1) (2021-03-23 15:14:43)
|
80
|
+
|
81
|
+
## Global changes
|
82
|
+
### Patches
|
83
|
+
|
84
|
+
* [[#33] [fix(provisioner_proxmox)] Make sure we re-authenticate on Proxmox API in case of 5xx errors](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ebdbdef98214c88391d70329af62d07cd93bc499)
|
85
|
+
|
86
|
+
## Changes for provisioner_proxmox
|
87
|
+
### Patches
|
88
|
+
|
89
|
+
* [[#33] [fix(provisioner_proxmox)] Make sure we re-authenticate on Proxmox API in case of 5xx errors](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ebdbdef98214c88391d70329af62d07cd93bc499)
|
90
|
+
|
91
|
+
# [v32.9.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.8.2...v32.9.0) (2021-03-22 19:20:50)
|
92
|
+
|
93
|
+
## Global changes
|
94
|
+
### Patches
|
95
|
+
|
96
|
+
* [[Feature(provisioner_proxmox)] Add configurable retry mechanism on Proxmox API](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/bd1c5d511844d643170eccc1b24c38734aeba693)
|
97
|
+
|
98
|
+
## Changes for provisioner_proxmox
|
99
|
+
### Features
|
100
|
+
|
101
|
+
* [[Feature(provisioner_proxmox)] Add configurable retry mechanism on Proxmox API](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/bd1c5d511844d643170eccc1b24c38734aeba693)
|
102
|
+
|
103
|
+
# [v32.8.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.8.1...v32.8.2) (2021-03-15 12:38:14)
|
104
|
+
|
105
|
+
## Global changes
|
106
|
+
### Patches
|
107
|
+
|
108
|
+
* [[#29] [Fix(tests_runner)] Don't fail when remote node tests return no test to be executed](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c23c0c73414962140c2e5ed86a7183a4ea572d1b)
|
109
|
+
|
110
|
+
## Changes for tests_runner
|
111
|
+
### Patches
|
112
|
+
|
113
|
+
* [[#29] [Fix(tests_runner)] Don't fail when remote node tests return no test to be executed](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c23c0c73414962140c2e5ed86a7183a4ea572d1b)
|
114
|
+
|
115
|
+
# [v32.8.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.8.0...v32.8.1) (2021-03-15 11:40:09)
|
116
|
+
|
117
|
+
## Global changes
|
118
|
+
### Patches
|
119
|
+
|
120
|
+
* [[Hotfix(connector_ssh)] Don't fail when no_exception is true](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/67be9c1d2f0452a9de39dae39e39cbfbac3a658f)
|
121
|
+
|
122
|
+
## Changes for connector_ssh
|
123
|
+
### Patches
|
124
|
+
|
125
|
+
* [[Hotfix(connector_ssh)] Don't fail when no_exception is true](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/67be9c1d2f0452a9de39dae39e39cbfbac3a658f)
|
126
|
+
|
127
|
+
# [v32.8.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.7.3...v32.8.0) (2021-03-15 10:43:06)
|
128
|
+
|
129
|
+
### Features
|
130
|
+
|
131
|
+
* [[#27] [Feature] Add a way to specify non-interactive environment + Make sure non-SessionExec SSH connections fail in non-interactive env](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c0a40dcd4d2e520f9bc8ffed3bc90da16fe81c72)
|
132
|
+
|
133
|
+
# [v32.7.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.7.2...v32.7.3) (2021-03-12 20:22:50)
|
134
|
+
|
135
|
+
### Patches
|
136
|
+
|
137
|
+
* [[Hotfix] Fix non-deterministic tests when threads are really slow](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/268b97977c777bf6a42763502c4c6f1788d3be96)
|
138
|
+
* [[#25] Instances provisioned for test should reset sudo and SSH transf…](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/52332f077da4fbc280ef2ea6d82fa6ad3080b668)
|
139
|
+
|
140
|
+
# [v32.7.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.7.1...v32.7.2) (2021-03-12 12:50:01)
|
141
|
+
|
142
|
+
### Patches
|
143
|
+
|
144
|
+
* [Improve error reporting of unexpected commands in tests](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/62679699cac87a25715aaf5296bf6213922db263)
|
145
|
+
|
146
|
+
# [v32.7.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.7.0...v32.7.1) (2021-03-12 10:06:58)
|
147
|
+
|
148
|
+
## Global changes
|
149
|
+
### Patches
|
150
|
+
|
151
|
+
* [[Hotfix] Correct non-deterministic test case when ControlMaster creation is done on a slow thread](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/d59bc6edefc297bf29ca61680647a52165e7b3d6)
|
152
|
+
* [[Hotfix] Corrected test that failed in a non-deterministic way](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/20036c6b2898b85bfa867f41ee8356f61700722f)
|
153
|
+
* [[#21] [Fix(connector_ssh)] Fix bug that did not execute SSH remote co…](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1fb09487f56e61b39d9f1f708176aa9643582336)
|
154
|
+
|
155
|
+
## Changes for connector_ssh
|
156
|
+
### Patches
|
157
|
+
|
158
|
+
* [[#21] [Fix(connector_ssh)] Fix bug that did not execute SSH remote co…](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1fb09487f56e61b39d9f1f708176aa9643582336)
|
159
|
+
|
160
|
+
# [v32.7.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.6.0...v32.7.0) (2021-03-11 19:10:23)
|
161
|
+
|
162
|
+
## Global changes
|
163
|
+
### Patches
|
164
|
+
|
165
|
+
* [Ssh without session exec](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8f105ae28cb43d48f1fb40d3f964c1e3a14d94fe)
|
166
|
+
|
167
|
+
## Changes for connector_ssh
|
168
|
+
### Features
|
169
|
+
|
170
|
+
* [Ssh without session exec](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8f105ae28cb43d48f1fb40d3f964c1e3a14d94fe)
|
171
|
+
|
172
|
+
# [v32.6.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.5.0...v32.6.0) (2021-03-11 14:19:39)
|
173
|
+
|
174
|
+
## Global changes
|
175
|
+
### Patches
|
176
|
+
|
177
|
+
* [[Feature(connector_ssh)] Add a way to transform SSH connection details for nodes](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a3b690f04032ceeb55606fa7a7a8df785a80f48c)
|
178
|
+
|
179
|
+
## Changes for connector_ssh
|
180
|
+
### Features
|
181
|
+
|
182
|
+
* [[Feature(connector_ssh)] Add a way to transform SSH connection details for nodes](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a3b690f04032ceeb55606fa7a7a8df785a80f48c)
|
183
|
+
|
184
|
+
# [v32.5.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.4.2...v32.5.0) (2021-03-10 19:11:10)
|
185
|
+
|
186
|
+
### Features
|
187
|
+
|
188
|
+
* [[#12] Configurable sudo](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b0da1e6f9bfd56f51730afb3c17c2607d719e56c)
|
189
|
+
|
190
|
+
# [v32.4.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.4.1...v32.4.2) (2021-03-05 13:29:25)
|
191
|
+
|
192
|
+
### Patches
|
193
|
+
|
194
|
+
* [Ssh config fix](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e2cfe52ab98fb246e2759d146aea297cb0f37321)
|
195
|
+
|
196
|
+
# [v32.4.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.4.0...v32.4.1) (2021-03-03 13:17:39)
|
197
|
+
|
198
|
+
### Patches
|
199
|
+
|
200
|
+
* [[#10] Support invalid commit ids in deployment logs](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/f6109f4bd49ecb5dca221d9150f70fc8085261bc)
|
201
|
+
|
202
|
+
# [v32.4.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.3.6...v32.4.0) (2021-02-19 11:24:37)
|
203
|
+
|
204
|
+
### Features
|
205
|
+
|
206
|
+
* [[Feature] Adding packaging timeout configurable](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/18917ba35a8c0ee0427c81ddef0bc545c50f2a37)
|
207
|
+
|
208
|
+
# [v32.3.6](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.3.5...v32.3.6) (2021-02-04 16:34:56)
|
209
|
+
|
210
|
+
### Patches
|
211
|
+
|
212
|
+
* [Add missing dependency](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0a74fd470393d0e6936f3159ccca8cb3af35956a)
|
213
|
+
* [Fix Ruby version in CI](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/4ebfa25c447e2bb82f25346513e5ead46ea29de2)
|
214
|
+
* [Setup CI](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0087968b19926795742771606749a89edbf7ce2e)
|
215
|
+
|
216
|
+
# [v32.3.5](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.3.4...v32.3.5) (2021-02-01 11:04:30)
|
217
|
+
|
218
|
+
### Patches
|
219
|
+
|
220
|
+
* [Corrected bug in the deploy_freshness test: deployment log files haved changed names](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5add87995061e0093ce91610cbabc6ea902a8d5f)
|
221
|
+
|
222
|
+
# [v32.3.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.3.3...v32.3.4) (2021-01-18 18:00:45)
|
223
|
+
|
224
|
+
### Patches
|
225
|
+
|
226
|
+
* [[Hotfix] Typo in Bitbucket's URLs](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/763ad926643e3fb77fbe759a07faec355da7dd8b)
|
227
|
+
|
228
|
+
# [v32.3.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.3.3...v32.3.2) (2021-01-18 17:13:58)
|
229
|
+
|
230
|
+
### Patches
|
231
|
+
|
232
|
+
* [[Hotfix] Correct Bitbuket URLs in changelog](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/469171ee8c67f644833a064dae4ffcdede374722)
|
233
|
+
|
234
|
+
# [v32.3.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.3.2...v32.3.1) (2021-01-18 16:34:58)
|
235
|
+
|
236
|
+
### Patches
|
237
|
+
|
238
|
+
* [[Hotfix] Correct changelog URLs](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c72329e8c94b1d56d8f97f34e6cf83a1536ac39c)
|
239
|
+
|
240
|
+
# [v32.3.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.3.0...v32.3.1) (2021-01-18 15:48:22)
|
241
|
+
|
242
|
+
### Patches
|
243
|
+
|
244
|
+
* [[Hotfix] Bump ci-helpers version](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8c8c382329484e5cee7ffbc5764e496acb62f93c)
|
245
|
+
|
246
|
+
# [32.3.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.2.4...v32.3.0) (2021-01-12)
|
247
|
+
|
248
|
+
### New features
|
249
|
+
|
250
|
+
* [Feature] Make timeouts provisioner-specific + Make Proxmox timeouts configurable ([8bf3b65d](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8bf3b65d4b4d49797dcb7d89efccb824469d4058))
|
251
|
+
|
252
|
+
### Fixes
|
253
|
+
|
254
|
+
* Workaround bug impacted when git lib returns strange sha ids ([54ee8bd9](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/54ee8bd9a653c1b2d059a8f86d2d7eb2baaf2100))
|
255
|
+
* Corrected bug saving wrong logs on nodes when deployed in parallel ([3da6a34a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/3da6a34a77448dda2f9f5135bf4ddcfaa7de3aa0))
|
256
|
+
|
257
|
+
# [32.2.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.2.3...v32.2.4) (2020-12-22)
|
258
|
+
|
259
|
+
### Fixes
|
260
|
+
|
261
|
+
* [Hotfix] Fix failing git_diff_impacts for services not directly used by nodes ([769f0766](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/769f07660b8a63f127bb27f3f89567b3eefcd8b9))
|
262
|
+
|
263
|
+
# [32.2.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.2.2...v32.2.3) (2020-11-26)
|
264
|
+
|
265
|
+
### Fixes
|
266
|
+
|
267
|
+
* [Hotfix] Find old deployment logs correctly ([83413d44](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/83413d44f50954f8898b602be83b2d3b16055763))
|
268
|
+
|
269
|
+
# [32.2.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.2.1...v32.2.2) (2020-11-25)
|
270
|
+
|
271
|
+
### Fixes
|
272
|
+
|
273
|
+
* [Hotfix] Fix tests ([11d9b476](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/11d9b47607742629fc367d960bf06a1719ea7b06))
|
274
|
+
* [Hotfix] Increase timeout for network latencies ([bd41bd91](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/bd41bd916e2f21befa2c5b497d3e83ffde1c00a3))
|
275
|
+
|
276
|
+
# [32.2.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.2.0...v32.2.1) (2020-11-24)
|
277
|
+
|
278
|
+
### Fixes
|
279
|
+
|
280
|
+
* [Hotfix] Fix test ([2ccc0a3a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/2ccc0a3a47e51f20da24055db554c55729438276))
|
281
|
+
|
282
|
+
# [32.2.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.1.0...v32.2.0) (2020-11-24)
|
283
|
+
|
284
|
+
### New features
|
285
|
+
|
286
|
+
* [Feature] New CMDB plugin to define nodes' metadata from config ([09a5bde6](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/09a5bde67844df8b1a637dc13e0123732e2e286a))
|
287
|
+
|
288
|
+
# [32.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v32.0.0...v32.1.0) (2020-11-24)
|
289
|
+
|
290
|
+
### New features
|
291
|
+
|
292
|
+
* [Feature] Add a way to prioritize CMDBs by defining masters for some properties in case of conflicts ([269e6185](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/269e6185e1dec7deae56e3ce64fbf6c000a76c2d))
|
293
|
+
|
294
|
+
# [32.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v31.0.0...v32.0.0) (2020-11-24)
|
295
|
+
|
296
|
+
### Breaking changes
|
297
|
+
|
298
|
+
* [Breaking] Make sure NodesHandler detects conflicts between different CMDBs and report them instead of using the first CMDB result for performance ([e4bad885](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e4bad8858ed02cb8f5a598af97a24abfca9d8b2c))
|
299
|
+
|
300
|
+
# [31.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v30.0.0...v31.0.0) (2020-11-24)
|
301
|
+
|
302
|
+
### Breaking changes
|
303
|
+
|
304
|
+
* [Breaking] ServicesHandler can now deploy any service on any node ([a11d02ce](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a11d02ce284fd6ab4aa7e5a5a66b0f44e988e08b))
|
305
|
+
|
306
|
+
# [30.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v29.0.0...v30.0.0) (2020-11-24)
|
307
|
+
|
308
|
+
### Breaking changes
|
309
|
+
|
310
|
+
* [Breaking] Display deployed services in place of repositories' commits in last_deploys ([ba9b793f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ba9b793f28dc12739485c2e45ad6b9bdb7a2ed51))
|
311
|
+
|
312
|
+
# [29.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v28.1.0...v29.0.0) (2020-11-11)
|
313
|
+
|
314
|
+
### Breaking changes
|
315
|
+
|
316
|
+
* [Breaking] Better and simpler packaging process ([3f8a755e](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/3f8a755e16d374c23e512bbe87f5bc91a41b01d7))
|
317
|
+
|
318
|
+
# [28.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v28.0.0...v28.1.0) (2020-11-11)
|
319
|
+
|
320
|
+
### New features
|
321
|
+
|
322
|
+
* [Feature] Add a new authorization method in ServicesHandler to know if we are allowed to deploy services ([9ab92036](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/9ab92036857a41a224793f0d826fc785d4ae6f74))
|
323
|
+
|
324
|
+
# [28.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v27.0.0...v28.0.0) (2020-11-11)
|
325
|
+
|
326
|
+
### Breaking changes
|
327
|
+
|
328
|
+
* [Breaking] Removed allow_deploy_non_master from Deployer's API ([02ec3c23](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/02ec3c238781b38fae00cd6256b8e5cc12ea39ee))
|
329
|
+
* [Breaking] Removed platforms concepts from NodesHandler API and make sure components use a new ServicesHandler to handle services that can be deployed on our platforms ([ec0b14b0](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ec0b14b0af25af141dbae1d8bfacd44a31c00d02))
|
330
|
+
|
331
|
+
# [27.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v26.0.0...v27.0.0) (2020-11-11)
|
332
|
+
|
333
|
+
### Breaking changes
|
334
|
+
|
335
|
+
* [Breaking] Remove the --direct-deploy option from deployer as it is obsolete ([0f6c20c1](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0f6c20c19f2bca4e645ae038feaec14b5dcebd29))
|
336
|
+
|
337
|
+
# [26.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.10.0...v26.0.0) (2020-11-11)
|
338
|
+
|
339
|
+
### Breaking changes
|
340
|
+
|
341
|
+
* [Breaking] Remove feature about PlatformHandler-specific command-line options for deployers ([f4006fb7](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/f4006fb7e7b02b1191131291018eeb4b39ff3dd0))
|
342
|
+
|
343
|
+
# [25.10.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.9.0...v25.10.0) (2020-11-11)
|
344
|
+
|
345
|
+
### New features
|
346
|
+
|
347
|
+
* [Feature] Separated the platforms handling part from the NodesHandler to create the new PlatformsHandler API ([92b64d9c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/92b64d9cce343b54c84b970dd5bcb2eceba74598))
|
348
|
+
|
349
|
+
# [25.9.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.8.0...v25.9.0) (2020-11-11)
|
350
|
+
|
351
|
+
### New features
|
352
|
+
|
353
|
+
* [Feature] Add name helper in Platform Handler ([7ceef3e7](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/7ceef3e7d2ae5472847f5425b32acb848a42eb9d))
|
354
|
+
|
355
|
+
# [25.8.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.7.0...v25.8.0) (2020-10-26)
|
356
|
+
|
357
|
+
### New features
|
358
|
+
|
359
|
+
* [Feature] Add nodes_to_deploy executable to know which nodes need deployment considering schedules and git diff impacts ([6116ac15](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/6116ac15c00bf6061a8bbe7d93aa11e6bbfbc613))
|
360
|
+
|
361
|
+
# [25.7.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.6.1...v25.7.0) (2020-10-26)
|
362
|
+
|
363
|
+
### New features
|
364
|
+
|
365
|
+
* [Feature] Add an API to get deployment info ([b7f6f9ec](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b7f6f9ec263a2a10e0b715769a8b66ab34da5ed6))
|
366
|
+
* [Feature] Add Config DSL to configure a deployment schedule for CD ([8b6440b1](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8b6440b115575b23b590f10356601b48f4dc8836))
|
367
|
+
|
368
|
+
### Fixes
|
369
|
+
|
370
|
+
* Ignore some system files that make find fail during the orphan files test ([dea6734b](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/dea6734b8068e6b26d1d3a977c9d25d3467cfbac))
|
371
|
+
|
372
|
+
# [25.6.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.6.0...v25.6.1) (2020-10-21)
|
373
|
+
|
374
|
+
### Fixes
|
375
|
+
|
376
|
+
* Handle very big bash commands in remote connections ([a32456c2](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a32456c2dc7d465652158affe0b9075a12b0c5a1))
|
377
|
+
|
378
|
+
# [25.6.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.5.1...v25.6.0) (2020-10-16)
|
379
|
+
|
380
|
+
### New features
|
381
|
+
|
382
|
+
* [Feature] Added HDFS file system test plugin, keeping the same DSL as local file system checks ([f03503ce](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/f03503ce630ebe5097b55ae7f81a588e8c10ed99))
|
383
|
+
|
384
|
+
# [25.5.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.5.0...v25.5.1) (2020-10-16)
|
385
|
+
|
386
|
+
### Fixes
|
387
|
+
|
388
|
+
* Correct instance restart test. ([1b821b3c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1b821b3cfe8f821fd0ff7fe4d72b3cc8b607ac6d))
|
389
|
+
|
390
|
+
# [25.5.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.4.0...v25.5.0) (2020-10-15)
|
391
|
+
|
392
|
+
### New features
|
393
|
+
|
394
|
+
* [Feature] Add test plugin to check opened and closed TCP ports ([a373caa9](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a373caa92db9f256439ad5913e526fff2fc07cdf))
|
395
|
+
|
396
|
+
# [25.4.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.3.0...v25.4.0) (2020-10-14)
|
397
|
+
|
398
|
+
### New features
|
399
|
+
|
400
|
+
* [Feature] Add test plugin to check for mounts ([94ed011d](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/94ed011d40f5160c90d411995c29e7ef15219e3c))
|
401
|
+
|
402
|
+
# [25.3.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.2.0...v25.3.0) (2020-10-14)
|
403
|
+
|
404
|
+
### New features
|
405
|
+
|
406
|
+
* [Feature] Add Proxmox realm authentication ([97a87b0b](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/97a87b0b32b839d5565f7e133bff576c10cfd919))
|
407
|
+
|
408
|
+
# [25.2.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.1.0...v25.2.0) (2020-10-13)
|
409
|
+
|
410
|
+
### New features
|
411
|
+
|
412
|
+
* [Feature] Add file_system test plugin to test for presence or absence of files on nodes ([193bd1d5](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/193bd1d5e04db9aa4224ee2d4c80fed79b2783ab))
|
413
|
+
|
414
|
+
# [25.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v25.0.0...v25.1.0) (2020-10-13)
|
415
|
+
|
416
|
+
### New features
|
417
|
+
|
418
|
+
* [Feature] Add test plugin to check for obsolete or extra users on nodes ([47fe47d1](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/47fe47d12982fcc3ae3c8c8c19276d86da428345))
|
419
|
+
|
420
|
+
### Fixes
|
421
|
+
|
422
|
+
* Make sure previous vulnerabilities run don't leave files - they can be big and add up with timestamps in their names ([13ebf86c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/13ebf86c9b8d651c8f7a80058c4b1dc83f8fb9a0))
|
423
|
+
|
424
|
+
# [25.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v24.4.0...v25.0.0) (2020-10-13)
|
425
|
+
|
426
|
+
### Breaking changes
|
427
|
+
|
428
|
+
* [Breaking] Use hpc_config.rb instead of hpc.json to configure everything we need ([5b379d7b](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5b379d7b8294f7c5e3b848dac212e09ff553bd83))
|
429
|
+
|
430
|
+
# [24.4.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v24.3.0...v24.4.0) (2020-10-13)
|
431
|
+
|
432
|
+
### New features
|
433
|
+
|
434
|
+
* [Feature] Add Config DSL to specify exceptions on orphan files testing ([2bcbec5c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/2bcbec5cd21124c2c305fc2a69d57a5331354b4e))
|
435
|
+
* [Feature] Add Config DSL for idempotence test exceptions ([4e2a3070](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/4e2a30708cf612c14f5481c7717bd9c183e19c4a))
|
436
|
+
|
437
|
+
# [24.3.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v24.2.0...v24.3.0) (2020-10-13)
|
438
|
+
|
439
|
+
### New features
|
440
|
+
|
441
|
+
* [Feature] Add Config DSL to support deployment retriable errors ([e872ef68](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e872ef68edb5e00945fbdfdaeeefcc9a5ed01623))
|
442
|
+
|
443
|
+
# [24.2.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v24.1.0...v24.2.0) (2020-10-13)
|
444
|
+
|
445
|
+
### New features
|
446
|
+
|
447
|
+
* [Feature] Add ways to filter configuration parts for some nodes sets and apply it to the expected failures configuration ([ec4eb6aa](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ec4eb6aa6c8bb505325231e522807c20edfb91a0))
|
448
|
+
|
449
|
+
# [24.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v24.0.0...v24.1.0) (2020-10-13)
|
450
|
+
|
451
|
+
### New features
|
452
|
+
|
453
|
+
* [Feature] Ability to include external config files ([9b6105e2](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/9b6105e25e312ee2c5234beff95a3598ff64f134))
|
454
|
+
|
455
|
+
# [24.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.5.3...v24.0.0) (2020-10-13)
|
456
|
+
|
457
|
+
### Breaking changes
|
458
|
+
|
459
|
+
* [Breaking] Decouple configuration from platform handlers notion, using hpc_config.rb ([047035af](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/047035afae94e3f2c7cf1127fea337af5fafaf8d))
|
460
|
+
|
461
|
+
# [23.5.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.5.2...v23.5.3) (2020-10-06)
|
462
|
+
|
463
|
+
### Fixes
|
464
|
+
|
465
|
+
* Bug correction on Confluence reports preventing publication of test reports ([2d44f76c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/2d44f76cd6a098c0510929b24a938b051d590656))
|
466
|
+
|
467
|
+
# [23.5.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.5.1...v23.5.2) (2020-10-02)
|
468
|
+
|
469
|
+
### Fixes
|
470
|
+
|
471
|
+
* Fix vulnerabilities run on Debian 10 ([157fd381](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/157fd381b7a851f8e1f473363fc1878370525327))
|
472
|
+
|
473
|
+
# [23.5.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.5.0...v23.5.1) (2020-09-30)
|
474
|
+
|
475
|
+
### Fixes
|
476
|
+
|
477
|
+
* Make Proxmox Waiter more robust by having queues for PIDs and avoid config files write conflicts ([18fa64c5](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/18fa64c5fe3e9fd3aa5d93cc71360f94391b2de5))
|
478
|
+
|
479
|
+
# [23.5.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.4.4...v23.5.0) (2020-09-24)
|
480
|
+
|
481
|
+
### New features
|
482
|
+
|
483
|
+
* [Feature] Don't fail actions as a whole when a few nodes are down ([2b29d1c4](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/2b29d1c43558cef68db4ee26bbf11efbd04498b2))
|
484
|
+
|
485
|
+
### Fixes
|
486
|
+
|
487
|
+
* Make versioning simpler: achieve automatic semantic releasing with a standard version definition and no more hpc_force_version env vars ([6c774daa](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/6c774daadc4722ce665eddd51b55798615410903))
|
488
|
+
|
489
|
+
# [23.4.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.4.3...v23.4.4) (2020-09-23)
|
490
|
+
|
491
|
+
### Fixes
|
492
|
+
|
493
|
+
* Install missing dependencies for the vulnerabilities test to run correctly ([14609753](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1460975359ea9be970fdcd90c7cf15897bef69a5))
|
494
|
+
|
495
|
+
# [23.4.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.4.2...v23.4.3) (2020-09-21)
|
496
|
+
|
497
|
+
### Fixes
|
498
|
+
|
499
|
+
* More useful stdout and Confluence reports now that Ansible fills in metadata ([74d03722](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/74d03722438f69a0894e2faf1e42376c61336ee0))
|
500
|
+
* Add vulnerabilities test plugin to check for non-patched vulnerabilities in our platforms ([95f1823f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/95f1823f0815b9808521900910667d3b38bfc3dc))
|
501
|
+
|
502
|
+
# [23.4.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.4.1...v23.4.2) (2020-09-14)
|
503
|
+
|
504
|
+
### Fixes
|
505
|
+
|
506
|
+
* Sort host keys to remove useless warnings in metadata when ssh-keyscan returns different sort ([bb169d9b](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/bb169d9b4435cd02b4ea134d9de5db873811e35a))
|
507
|
+
|
508
|
+
# [23.4.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.4.0...v23.4.1) (2020-09-14)
|
509
|
+
|
510
|
+
### Fixes
|
511
|
+
|
512
|
+
* Improved tests output with timings and harmonized logging ([0344e9ba](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0344e9bad49d5b3b673d56d35cb29895ce1d7344))
|
513
|
+
|
514
|
+
# [23.4.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.3.2...v23.4.0) (2020-09-14)
|
515
|
+
|
516
|
+
### New features
|
517
|
+
|
518
|
+
* [Feature] Added Proxmox plugin as a provisioner ([5e5b0e3e](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5e5b0e3e1d5803d82cad4c3369be6a7124c20e08))
|
519
|
+
|
520
|
+
# [23.3.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.3.1...v23.3.2) (2020-09-11)
|
521
|
+
|
522
|
+
### Fixes
|
523
|
+
|
524
|
+
* [Hotfix] Bug correction when parsing plugins from packed Rubygems containing non-standard chars ([a69c7894](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a69c7894dd19134ca7d3f6201f69ed20f2180171))
|
525
|
+
|
526
|
+
# [23.3.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.3.0...v23.3.1) (2020-09-11)
|
527
|
+
|
528
|
+
### Fixes
|
529
|
+
|
530
|
+
* [Hotfix] Missing require ([81e6dd20](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/81e6dd201ab60f2c9463020826cf9e3c6b35456a))
|
531
|
+
|
532
|
+
# [23.3.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.2.0...v23.3.0) (2020-09-11)
|
533
|
+
|
534
|
+
### New features
|
535
|
+
|
536
|
+
* [Feature] Provisioner used for tests is now configurable in platforms.rb ([b34b4dd0](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b34b4dd00056ee0a60ffa4c2808ca7a01177d56b))
|
537
|
+
|
538
|
+
# [23.2.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.1.2...v23.2.0) (2020-09-11)
|
539
|
+
|
540
|
+
### New features
|
541
|
+
|
542
|
+
* [Feature] Plugins can now define the DSL they want in platforms.rb ([a0ff2c24](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a0ff2c24154e2c8a25d681b29f505c8d3c8a2ddc))
|
543
|
+
|
544
|
+
# [23.1.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.1.1...v23.1.2) (2020-09-11)
|
545
|
+
|
546
|
+
### Fixes
|
547
|
+
|
548
|
+
* Add user name to environments to better track belongings in shared provisioners ([8618a51f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8618a51f50242be5f444b0de573452df59bd96fc))
|
549
|
+
|
550
|
+
# [23.1.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.1.0...v23.1.1) (2020-09-11)
|
551
|
+
|
552
|
+
### Fixes
|
553
|
+
|
554
|
+
* Corrected useless debug logs in tests by simplifying loggers initialization ([26c6b09c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/26c6b09c6bc5c3da09898caa654133a8a0590d43))
|
555
|
+
|
556
|
+
# [23.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v23.0.0...v23.1.0) (2020-09-11)
|
557
|
+
|
558
|
+
### New features
|
559
|
+
|
560
|
+
* [Feature] Add Podman as a Provisioner plugin ([f98510cf](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/f98510cf12b7b76a914fcc8813dc25c21fb831e6))
|
561
|
+
|
562
|
+
# [23.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v22.1.0...v23.0.0) (2020-09-11)
|
563
|
+
|
564
|
+
### Breaking changes
|
565
|
+
|
566
|
+
* [Breaking] Added the concept of Provisioner and corresponding plugins to provision infra ([bcd9dae5](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/bcd9dae5695d94e1b16d8a0362e68279e2271c70))
|
567
|
+
|
568
|
+
# [22.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v22.0.0...v22.1.0) (2020-09-11)
|
569
|
+
|
570
|
+
### New features
|
571
|
+
|
572
|
+
* [Feature] Plugins can validate their dependencies before registration ([181bc3a3](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/181bc3a3658be41779f8fb66511ae4de356b138d))
|
573
|
+
|
574
|
+
# [22.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v21.0.0...v22.0.0) (2020-09-11)
|
575
|
+
|
576
|
+
### Breaking changes
|
577
|
+
|
578
|
+
* [Breaking] Harmonized the way plugins are integrated for any kind of plugin ([7a2dd942](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/7a2dd942012df2fa976e6d4ff3aec8694f3dc5a3))
|
579
|
+
|
580
|
+
# [21.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v20.0.0...v21.0.0) (2020-08-11)
|
581
|
+
|
582
|
+
### Breaking changes
|
583
|
+
|
584
|
+
* [Breaking] Renamed CI concepts into generic Jenkins CI and moved its configuration in platforms.rb ([ea665054](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ea6650545246c6d6b426af7254d958d90ad491b7))
|
585
|
+
|
586
|
+
# [20.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v19.3.0...v20.0.0) (2020-08-11)
|
587
|
+
|
588
|
+
### Breaking changes
|
589
|
+
|
590
|
+
* [Breaking] Harmonized and hardened the way credentials to external services are being set ([960c4a52](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/960c4a527bfdcabc0d03da9cc7bec5508b524550))
|
591
|
+
|
592
|
+
# [19.3.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v19.2.0...v19.3.0) (2020-08-10)
|
593
|
+
|
594
|
+
### New features
|
595
|
+
|
596
|
+
* [Feature] Move Confluence configuration to platforms.rb so that it is not hardcoded anymore in Conductor ([04ba777a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/04ba777afe37504ee11c8d57d22d1489801c2303))
|
597
|
+
|
598
|
+
### Fixes
|
599
|
+
|
600
|
+
* Log unhandled Docker exceptions - should not happen, but help in debugging when it does ([8ae4c9cb](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8ae4c9cb382b1b14f850c0ffe52c62e46dfda788))
|
601
|
+
* Report errors instead of failing when no connector is available to a node ([dad1d671](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/dad1d671a8d3101248fb6d510cbe6373b08d0adb))
|
602
|
+
|
603
|
+
# [19.2.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v19.1.2...v19.2.0) (2020-08-07)
|
604
|
+
|
605
|
+
### New features
|
606
|
+
|
607
|
+
* [Feature] Remove My_company references from Bitbucket configuration ([007b75be](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/007b75beeecfd791b04efaf34d725852821401a2))
|
608
|
+
|
609
|
+
# [19.1.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v19.1.1...v19.1.2) (2020-07-27)
|
610
|
+
|
611
|
+
### Fixes
|
612
|
+
|
613
|
+
* Make Docker tests use retries during deployments for non-deterministic failures ([c4774fa8](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c4774fa89659d2848f1776b07b4735ad3ee29db5))
|
614
|
+
* Merge pull request #141 in PROJECThybrid_platforms_conductor from ~USERNME/hybrid_platforms_conductor:PROJECT-757_command_line_option_to_retries to master ([ff2c8965](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ff2c896552e1eeef7aceadbc4b25c23c355e3e7b))
|
615
|
+
|
616
|
+
# [19.1.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v19.1.0...v19.1.1) (2020-07-27)
|
617
|
+
|
618
|
+
### Fixes
|
619
|
+
|
620
|
+
* Remove duplicate info in logs and make sure lines don't get appended ([8eb54b5c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8eb54b5c719ebdd8e3e1f93b416e1e659c1e9932))
|
621
|
+
* Add nbr_retries_on_error accessor in the Deployer API to retry non-deterministic errors ([431eb9ed](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/431eb9ed1576277dafbbbc318a82bbb275f12afe))
|
622
|
+
|
623
|
+
# [19.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v19.0.0...v19.1.0) (2020-07-06)
|
624
|
+
|
625
|
+
### New features
|
626
|
+
|
627
|
+
* [Feature] Add get_impacted_nodes executable to have simple reports on nodes impacted by a git diff ([5ebb4f8f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5ebb4f8ffc3382c51ccd0a8553e85a369bcd1c91))
|
628
|
+
* [Feature] Add a new nodes selector to select based on nodes impacted by a git diff ([0638f6a3](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0638f6a3c0b6476e37d23a445a03fd09984f1648))
|
629
|
+
|
630
|
+
# [19.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.3.4...v19.0.0) (2020-07-06)
|
631
|
+
|
632
|
+
### Breaking changes
|
633
|
+
|
634
|
+
* [Breaking] Make stderr available to tests running remote commands on nodes ([1d7455cd](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1d7455cd380fa34ae330a83ebffe2745cc5cf924))
|
635
|
+
|
636
|
+
### New features
|
637
|
+
|
638
|
+
* [Feature] Add impacted_nodes_from_git_diff in NodesHandler API ([852b0089](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/852b00897dd02c71a64c0578c336d2a7d6055472))
|
639
|
+
* [Feature] Add a way to specify idempotence exceptions at tasks level from hpc.json ([8e496ff8](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8e496ff88afd9a4d8518f1488ae0d833cabf13fd))
|
640
|
+
|
641
|
+
### Fixes
|
642
|
+
|
643
|
+
* Group Docker tests in 1 test to save Docker resources on the CI ([2936ece3](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/2936ece328916dc9475bace2183bcc44e1bfd653))
|
644
|
+
* Make Docker container handling more robust ([a6294e9a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a6294e9af3ca5f9009db24d2053f5c94e8110dc0))
|
645
|
+
* Moved orphan files exceptions to hpc.json ([a13ce57d](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a13ce57ddab1cb9260b5927204a0384d9e0acdb7))
|
646
|
+
* Make sure files are accessed using absolute paths to avoid thread-safety issues with current directory setting ([4c26ddbd](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/4c26ddbdbb38c8f58630c0a376836c74a1cbf986))
|
647
|
+
|
648
|
+
# [18.3.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.3.3...v18.3.4) (2020-06-30)
|
649
|
+
|
650
|
+
### Fixes
|
651
|
+
|
652
|
+
* Workaround IPs being changed during tests by CI ([9f30af36](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/9f30af36d9518294316eab6723a32e3d354eab59))
|
653
|
+
|
654
|
+
# [18.3.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.3.2...v18.3.3) (2020-06-26)
|
655
|
+
|
656
|
+
### Fixes
|
657
|
+
|
658
|
+
* Make sure tests won't fail because of local SSH settings ([0610991e](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0610991e3e901771209ed98a26e93364c0cccf28))
|
659
|
+
* Increase Docker container start timeouts as CI is really slow ([574a2e46](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/574a2e46e7e24d28f5910b6cf252a649569c188e))
|
660
|
+
|
661
|
+
# [18.3.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.3.1...v18.3.2) (2020-06-26)
|
662
|
+
|
663
|
+
### Fixes
|
664
|
+
|
665
|
+
* Dump Docker logs in case of errors even if not in debug mode ([c58331df](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c58331df13296fa412eabe933c7fd6c88a80ef1b))
|
666
|
+
* Make git linear strategy test less verbose ([b10a4791](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b10a479183fcde7c1137eabe041dde27d7c87d2a))
|
667
|
+
|
668
|
+
# [18.3.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.3.0...v18.3.1) (2020-06-26)
|
669
|
+
|
670
|
+
### Fixes
|
671
|
+
|
672
|
+
* Bug correction that did not detect missing root access correctly ([b4a46a66](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b4a46a66a20ceac06ac59960a2689623f309fda9))
|
673
|
+
|
674
|
+
# [18.3.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.9...v18.3.0) (2020-06-26)
|
675
|
+
|
676
|
+
### New features
|
677
|
+
|
678
|
+
* [Feature] Make CmdRunner able to expect several exit codes ([33e8a3ff](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/33e8a3ff77133e86f76b39537e4537d7e67b8152))
|
679
|
+
|
680
|
+
# [18.2.9](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.8...v18.2.9) (2020-06-19)
|
681
|
+
|
682
|
+
### Fixes
|
683
|
+
|
684
|
+
* Dump detailed differences in case of idempotence failures ([f9139c08](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/f9139c08f50f5d983a5cea28d51f4c8ce2cd1bfb))
|
685
|
+
|
686
|
+
# [18.2.8](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.7...v18.2.8) (2020-06-17)
|
687
|
+
|
688
|
+
### Fixes
|
689
|
+
|
690
|
+
* Update Ruby install doc now that 2.7 is used in CI ([33765afc](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/33765afce20fb5a731310d1c1f6e6345d055f110))
|
691
|
+
|
692
|
+
# [18.2.7](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.6...v18.2.7) (2020-06-15)
|
693
|
+
|
694
|
+
### Fixes
|
695
|
+
|
696
|
+
* Corrected Spectre test ([b5669230](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b5669230fd86f4d7160b40dc1be1ea44f0e3635a))
|
697
|
+
|
698
|
+
# [18.2.6](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.5...v18.2.6) (2020-06-15)
|
699
|
+
|
700
|
+
### Fixes
|
701
|
+
|
702
|
+
* Dump call trace when an exception arises during check-node in debug mode ([f018ca08](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/f018ca087705f36c53a584e14b4f32abb0259706))
|
703
|
+
|
704
|
+
# [18.2.5](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.4...v18.2.5) (2020-06-15)
|
705
|
+
|
706
|
+
### Fixes
|
707
|
+
|
708
|
+
* Add divergence test - what was previously achieved by the chef_woulds test, now generic ([3ca11868](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/3ca118687a07e2bd3a34de0d2dbd50b46d597901))
|
709
|
+
|
710
|
+
# [18.2.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.3...v18.2.4) (2020-06-15)
|
711
|
+
|
712
|
+
### Fixes
|
713
|
+
|
714
|
+
* Make sure idempotence tests don't fail because of root access being removed ([7cf47697](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/7cf47697a2d86e7862c40124ffbdd1f6de152254))
|
715
|
+
|
716
|
+
# [18.2.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.2...v18.2.3) (2020-06-15)
|
717
|
+
|
718
|
+
### Fixes
|
719
|
+
|
720
|
+
* Factorize tests at service-level logic ([5237930f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5237930f1a39adf3bd05e1f45447b1c512ad7a4f))
|
721
|
+
|
722
|
+
# [18.2.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.1...v18.2.2) (2020-06-15)
|
723
|
+
|
724
|
+
### Fixes
|
725
|
+
|
726
|
+
* Automatically reuse Docker containers in debug mode to ease local debugging ([a07a990f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/a07a990fd53fe1ec7a1bf833f882bca59042423b))
|
727
|
+
|
728
|
+
# [18.2.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.2.0...v18.2.1) (2020-06-15)
|
729
|
+
|
730
|
+
### Fixes
|
731
|
+
|
732
|
+
* Retry SSH connections when remote system is booting up ([0c645b2a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0c645b2aefc233fe223d6b703362b29dfd5d7613))
|
733
|
+
|
734
|
+
# [18.2.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.1.0...v18.2.0) (2020-06-15)
|
735
|
+
|
736
|
+
### New features
|
737
|
+
|
738
|
+
* [Feature] Parse deployment logs to check tasks in detail for idempotence ([4553565b](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/4553565bcc934956085bae6a819b797393cc0f0e))
|
739
|
+
|
740
|
+
# [18.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.0.4...v18.1.0) (2020-06-15)
|
741
|
+
|
742
|
+
### New features
|
743
|
+
|
744
|
+
* [Feature] Make the --secrets option able to fetch secrets directly from a Thycotic Secret Server ([029a533c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/029a533c2a9d4002dd363fec9c81c28417d92ea1))
|
745
|
+
|
746
|
+
# [18.0.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.0.3...v18.0.4) (2020-06-15)
|
747
|
+
|
748
|
+
### Fixes
|
749
|
+
|
750
|
+
* stdout logs are saved in deployment logs even when deployment fails ([005fe6da](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/005fe6da2dcefaa1fe8b35743a41c08cc9f856ac))
|
751
|
+
|
752
|
+
# [18.0.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.0.2...v18.0.3) (2020-06-15)
|
753
|
+
|
754
|
+
### Fixes
|
755
|
+
|
756
|
+
* Pass nodes to be deployed to prepare_for_deploy ([2164fee3](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/2164fee3204fdae75ddd7874cba245ed22ac3c99))
|
757
|
+
|
758
|
+
# [18.0.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.0.1...v18.0.2) (2020-06-15)
|
759
|
+
|
760
|
+
### Fixes
|
761
|
+
|
762
|
+
* [Breaking] Renamed ssh_run into run ([e6ad77f8](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e6ad77f8a13dece5d8e8155827839c8f75d3dfb4))
|
763
|
+
|
764
|
+
# [18.0.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v18.0.0...v18.0.1) (2020-06-15)
|
765
|
+
|
766
|
+
### Fixes
|
767
|
+
|
768
|
+
* [Breaking] Renamed SSH Executor to Actions Executor ([2d1aa9e6](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/2d1aa9e6c0600dc3aeae6fb6bb785f09d409b3d1))
|
769
|
+
|
770
|
+
# [18.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v17.0.1...v18.0.0) (2020-06-15)
|
771
|
+
|
772
|
+
### Breaking changes
|
773
|
+
|
774
|
+
* [Breaking] Support for connectors plugins to connect with ssh or other means to our nodes ([49a326c6](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/49a326c68d3bc28f2b83a82783c449e87043e4c6))
|
775
|
+
|
776
|
+
# [17.0.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v17.0.0...v17.0.1) (2020-06-01)
|
777
|
+
|
778
|
+
### Fixes
|
779
|
+
|
780
|
+
* Add v40 into nodes having remote mounts ([671ed543](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/671ed543d0cfc1a951f8e06d2b983c82bf9bbc80))
|
781
|
+
|
782
|
+
# [17.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v16.1.2...v17.0.0) (2020-06-01)
|
783
|
+
|
784
|
+
### Breaking changes
|
785
|
+
|
786
|
+
* [Breaking] Make the dry_run switch specific to the CmdRunner API only ([0bc2a574](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0bc2a574f97705c9dd1f8bed80f4bec85fcf9e65))
|
787
|
+
|
788
|
+
# [16.1.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v16.1.1...v16.1.2) (2020-06-01)
|
789
|
+
|
790
|
+
### Fixes
|
791
|
+
|
792
|
+
* Organized actions' tests by plugin ([58edaaf0](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/58edaaf0b8d91d9b619fe9d7c3e78f1e7fd6f99e))
|
793
|
+
|
794
|
+
# [16.1.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v16.1.0...v16.1.1) (2020-06-01)
|
795
|
+
|
796
|
+
### Fixes
|
797
|
+
|
798
|
+
* Better error reporting when multi-threaded code fails ([9876482c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/9876482c48cbcc0b0d26aa1d393afa30d822b0f5))
|
799
|
+
|
800
|
+
# [16.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v16.0.4...v16.1.0) (2020-06-01)
|
801
|
+
|
802
|
+
### New features
|
803
|
+
|
804
|
+
* [Feature] Add ability to override and invalidate metadata in NodesHandler ([8df19598](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8df19598b7014cb14006e3602671ee8eb2d3c75c))
|
805
|
+
|
806
|
+
### Fixes
|
807
|
+
|
808
|
+
* Handle Jenkins' null status for running builds ([b91a658a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b91a658a25d973daf58a6ff5f1badd7aebee88ff))
|
809
|
+
|
810
|
+
# [16.0.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v16.0.3...v16.0.4) (2020-06-01)
|
811
|
+
|
812
|
+
### Fixes
|
813
|
+
|
814
|
+
* Make sure non-finished lines are logged correctly ([e8b8b254](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e8b8b254d529d74cb9f87459493dca5b8a521a72))
|
815
|
+
|
816
|
+
# [16.0.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v16.0.2...v16.0.3) (2020-06-01)
|
817
|
+
|
818
|
+
### Fixes
|
819
|
+
|
820
|
+
* Add titles on progress bars for better output ([b524d696](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b524d696d5371b7a4127cc0c42c911a240607499))
|
821
|
+
|
822
|
+
# [16.0.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v16.0.1...v16.0.2) (2020-06-01)
|
823
|
+
|
824
|
+
### Fixes
|
825
|
+
|
826
|
+
* Better ssh_run logging when in debug mode ([31468c6c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/31468c6cb8524b39c692512f207b872e4a7db2a4))
|
827
|
+
* Merge pull request #107 in PROJECThybrid_platforms_conductor from ~USERNME/hybrid_platforms_conductor:add_tcorvazier to master ([12d2e2df](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/12d2e2df2ab2272f9694c8e90b33d7a9714835a2))
|
828
|
+
|
829
|
+
# [16.0.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v16.0.0...v16.0.1) (2020-05-20)
|
830
|
+
|
831
|
+
### Fixes
|
832
|
+
|
833
|
+
* Take host keys from CMDB and use them to generate known_hosts file ([cd03c51a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/cd03c51ab07698149c3d55bee0e327c3901180b8))
|
834
|
+
|
835
|
+
# [16.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v15.0.0...v16.0.0) (2020-05-20)
|
836
|
+
|
837
|
+
### Breaking changes
|
838
|
+
|
839
|
+
* [Breaking] Moved connection logic from NodesHandler to SshExecutor so that metadata is used to decide connection details ([133ba94e](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/133ba94e49ddcb94f05c76a33469288fb4d3be4c))
|
840
|
+
|
841
|
+
# [15.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v14.1.1...v15.0.0) (2020-05-20)
|
842
|
+
|
843
|
+
### Breaking changes
|
844
|
+
|
845
|
+
* [Breaking] Support for CMDBs in NodesHandler ([33a4fc0f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/33a4fc0f78dd3a86f468f62bc92582ef1ccfeae2))
|
846
|
+
|
847
|
+
### Fixes
|
848
|
+
|
849
|
+
* Bug correction messing up log files of commands run in parallel ([eeaad8cb](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/eeaad8cb432d9060a41b8e634ecce369f924f7dd))
|
850
|
+
|
851
|
+
# [14.1.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v14.1.0...v14.1.1) (2020-05-19)
|
852
|
+
|
853
|
+
### Fixes
|
854
|
+
|
855
|
+
* ControlMasters used by SSH connections are now protected in multi-process environment ([1c697885](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1c69788543965bf8afd532fb6d37e075ae980bd5))
|
856
|
+
|
857
|
+
# [14.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v14.0.2...v14.1.0) (2020-05-19)
|
858
|
+
|
859
|
+
### New features
|
860
|
+
|
861
|
+
* [Feature] Add a way for ssh config to be generated for a given set of nodes ([78c8230a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/78c8230a1ce68c85b5f5971fcf69f6d70f66024d))
|
862
|
+
|
863
|
+
# [14.0.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v14.0.1...v14.0.2) (2020-05-19)
|
864
|
+
|
865
|
+
### Fixes
|
866
|
+
|
867
|
+
* Don't update known_hosts file if the host is already registered in it ([6b256e2f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/6b256e2fb94fffae53624f07a097b08eab701d85))
|
868
|
+
|
869
|
+
# [14.0.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v14.0.0...v14.0.1) (2020-05-19)
|
870
|
+
|
871
|
+
### Fixes
|
872
|
+
|
873
|
+
* Removed ssh directory locks by having 1 different dir per usage ([f90a2132](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/f90a21327c9d5b4953ef6f1aaeec405d797392ea))
|
874
|
+
|
875
|
+
# [14.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v13.0.0...v14.0.0) (2020-04-29)
|
876
|
+
|
877
|
+
### Breaking changes
|
878
|
+
|
879
|
+
* Merge branch 'PROJECT-565_better_actions' ([c14ec24e](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c14ec24ee6213525b41cce36469f4bd64a2b4832))
|
880
|
+
|
881
|
+
# [13.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.4.5...v13.0.0) (2020-04-29)
|
882
|
+
|
883
|
+
### Breaking changes
|
884
|
+
|
885
|
+
* [Breaking] Associate several services to a node instead of just 1 ([4c95f239](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/4c95f239e846ad4192ecd36d906aaa5596ea6ba4))
|
886
|
+
|
887
|
+
### New features
|
888
|
+
|
889
|
+
* [Feature] Add a way for CmdRunner to log stdout and stderr in IO streams ([aae21f4e](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/aae21f4e0ba4c5e72906e10030c1a4dd743942bd))
|
890
|
+
|
891
|
+
### Fixes
|
892
|
+
|
893
|
+
* [Hotfix] Correct test cases wrong because of conflicting PRs merged in parallel ([702eda67](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/702eda67b7d357c687989bbdf52e1632e4ea35f4))
|
894
|
+
|
895
|
+
# [12.4.5](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.4.4...v12.4.5) (2020-04-29)
|
896
|
+
|
897
|
+
### Fixes
|
898
|
+
|
899
|
+
* Make sure host IPs are among known hosts to avoid SSH warnings because of CheckHostIp ([0d465601](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0d4656011b1a338056e16fdcf5ca695a187dcd9f))
|
900
|
+
|
901
|
+
# [12.4.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.4.3...v12.4.4) (2020-04-29)
|
902
|
+
|
903
|
+
### Fixes
|
904
|
+
|
905
|
+
* Improved logging of tests run ([c84b63d2](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c84b63d2107b523b578c1d671e94edad63ef0bee))
|
906
|
+
|
907
|
+
# [12.4.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.4.2...v12.4.3) (2020-04-23)
|
908
|
+
|
909
|
+
### Fixes
|
910
|
+
|
911
|
+
* Improve error reporting when using an invalid nodes list ([1e5d50dd](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1e5d50ddae93f50f576ec8e7cd6ae75b88fc2822))
|
912
|
+
* Merge pull request #86 in PROJECThybrid_platforms_conductor from ~USERNME/hybrid_platforms_conductor:PROJECT-565_better_stdout_reports to master ([70821952](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/70821952ff5f4f0c2bdfe7a25f5881896ef19fd4))
|
913
|
+
* Merge pull request #86 in PROJECThybrid_platforms_conductor from ~USERNME/hybrid_platforms_conductor:PROJECT-565_better_stdout_reports to master ([70821952](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/70821952ff5f4f0c2bdfe7a25f5881896ef19fd4))
|
914
|
+
* Merge pull request #81 in PROJECThybrid_platforms_conductor from ~USERNME/hybrid_platforms_conductor:PROJECT-565_increase_timeouts to master ([97bde852](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/97bde8528e2178de790af09c92cfda8fd4c758d9))
|
915
|
+
* Added support for Debian 10 ([d7bd39d3](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/d7bd39d36c60682aa35b1836fef02ef3abd0d70d))
|
916
|
+
|
917
|
+
# [12.4.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.4.1...v12.4.2) (2020-04-21)
|
918
|
+
|
919
|
+
### Fixes
|
920
|
+
|
921
|
+
* Removed magic numbers ([1a7ee61f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1a7ee61fc612d2f6a38c940822cb6b59a2bcfa2d))
|
922
|
+
|
923
|
+
# [12.4.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.4.0...v12.4.1) (2020-04-07)
|
924
|
+
|
925
|
+
### Fixes
|
926
|
+
|
927
|
+
* Corrected bug displaying errors about frozen strings when password is taken from environment ([ae2a7d69](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ae2a7d692e812501611ab52dc60c0019af4a10c2))
|
928
|
+
|
929
|
+
# [12.4.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.3.1...v12.4.0) (2020-04-08)
|
930
|
+
|
931
|
+
### New features
|
932
|
+
|
933
|
+
* [Feature] Add command-line options to tune max threads run for SSH, nodes and platform tests ([e962d8a7](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e962d8a723a113183a0e31100775fd181cf6af0c))
|
934
|
+
|
935
|
+
### Fixes
|
936
|
+
|
937
|
+
* Merge pull request #76 in PROJECThybrid_platforms_conductor from ~USERNME/hybrid_platforms_conductor:PROJECT-319_certificates_only_in_local to master ([c7515666](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c7515666298754ed98e5d8a2ae5f71c52d7566f6))
|
938
|
+
* Merge pull request #76 in PROJECThybrid_platforms_conductor from ~USERNME/hybrid_platforms_conductor:PROJECT-319_certificates_only_in_local to master ([c7515666](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c7515666298754ed98e5d8a2ae5f71c52d7566f6))
|
939
|
+
|
940
|
+
# [12.3.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.3.0...v12.3.1) (2020-04-06)
|
941
|
+
|
942
|
+
### Fixes
|
943
|
+
|
944
|
+
* Updated doc using new way of installing bundler ([5506edb8](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5506edb8119ca98c32af573bc4550feb09e90c58))
|
945
|
+
|
946
|
+
# [12.3.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.2.0...v12.3.0) (2020-04-02)
|
947
|
+
|
948
|
+
### New features
|
949
|
+
|
950
|
+
* [Feature] Check for semantic tags set correctly in our repos ([046a3e74](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/046a3e74f8adb876136db23a5a7b9422ec9ab5a9))
|
951
|
+
|
952
|
+
# [12.2.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.1.0...v12.2.0) (2020-04-02)
|
953
|
+
|
954
|
+
### New features
|
955
|
+
|
956
|
+
* [Feature] Use hpc_certificates variable to automatically install SSL certificates on nodes ([ca50e64a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ca50e64a63e2f3093c6c9bf770c0f991d9b6b402))
|
957
|
+
|
958
|
+
# [12.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v12.0.0...v12.1.0) (2020-03-31)
|
959
|
+
|
960
|
+
### New features
|
961
|
+
|
962
|
+
* [Feature] New test checking that CI builds on master are successful + Better netrc usage + Simple CI mixin ([03c6ac85](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/03c6ac85c8b23173f3778d3c54b8ee6da2fcbfc3))
|
963
|
+
|
964
|
+
# [12.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v11.2.1...v12.0.0) (2020-03-25)
|
965
|
+
|
966
|
+
### Breaking changes
|
967
|
+
|
968
|
+
* [Feature] Make platform tests runnable in parallel for Molecule + Platforms can register new test plugins ([3fe397a2](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/3fe397a2b69d0b7b21ecf64c050f3ca7f7da88f7))
|
969
|
+
|
970
|
+
### New features
|
971
|
+
|
972
|
+
* [Feature] Take CI credentials from env vars + Workaround Bitbucket's unstability ([5ac911a5](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/5ac911a5cbaf51738f9bd5a586d2dd4eba4393a9))
|
973
|
+
|
974
|
+
# [11.2.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v11.2.0...v11.2.1) (2020-03-23)
|
975
|
+
|
976
|
+
### Fixes
|
977
|
+
|
978
|
+
* Remove checks for obsolete users among reviewers ([1c2c075d](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1c2c075dee13c2ea5e307702e794df31e47d3caa))
|
979
|
+
|
980
|
+
# [11.2.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v11.1.0...v11.2.0) (2020-02-10)
|
981
|
+
|
982
|
+
### New features
|
983
|
+
|
984
|
+
* [Feature] Add new test validating that each repository has a corresponding CI job ([e9cee4c6](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e9cee4c647d6ed82ff4958ba4981e66696863afa))
|
985
|
+
|
986
|
+
# [11.1.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v11.0.3...v11.1.0) (2020-02-04)
|
987
|
+
|
988
|
+
### New features
|
989
|
+
|
990
|
+
* [Feature] Add Bitbucket configuration testing ([b6b6f8af](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b6b6f8af2336b8b3cc8e671d5669a95af4691a7f))
|
991
|
+
|
992
|
+
# [11.0.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v11.0.2...v11.0.3) (2020-01-17)
|
993
|
+
|
994
|
+
### Fixes
|
995
|
+
|
996
|
+
* Configure a hostname for tests run in Docker ([11c9fae5](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/11c9fae51eb7ba0cd0060b0a770c22c3b2fe3388))
|
997
|
+
|
998
|
+
# [11.0.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v11.0.1...v11.0.2) (2019-12-18)
|
999
|
+
|
1000
|
+
### Fixes
|
1001
|
+
|
1002
|
+
* added bind to cgroup volume in docker container creation to enable systemd ([7992ab14](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/7992ab14460a9411db31a984cbe91c2ba398aebf))
|
1003
|
+
|
1004
|
+
# [11.0.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v11.0.0...v11.0.1) (2019-09-17)
|
1005
|
+
|
1006
|
+
### Fixes
|
1007
|
+
|
1008
|
+
* Better tests report: less verbose, more efficient ([e04c820f](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/e04c820f6175a46fcd1a0cecf232ed4cf3337cd9))
|
1009
|
+
|
1010
|
+
# [11.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v10.0.0...v11.0.0) (2019-09-17)
|
1011
|
+
|
1012
|
+
### Breaking changes
|
1013
|
+
|
1014
|
+
* [Breaking] Clean up and harmonized command line and env variables interfaces ([ddf1d522](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/ddf1d5224dcb6ac7edf75a7e9b62495766b9a1b7))
|
1015
|
+
|
1016
|
+
# [10.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v9.0.0...v10.0.0) (2019-09-17)
|
1017
|
+
|
1018
|
+
### Breaking changes
|
1019
|
+
|
1020
|
+
* Clean up last components' API ([8b76845c](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8b76845c8750c9f5088ae5ff136d53e717af942e))
|
1021
|
+
|
1022
|
+
# [9.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v8.0.0...v9.0.0) (2019-09-17)
|
1023
|
+
|
1024
|
+
### Breaking changes
|
1025
|
+
|
1026
|
+
* Clean up api deployer ([01b7d71b](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/01b7d71be4d2761f52fec76efe8d1b9c8d63b04b))
|
1027
|
+
|
1028
|
+
# [8.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v7.0.1...v8.0.0) (2019-09-11)
|
1029
|
+
|
1030
|
+
### Breaking changes
|
1031
|
+
|
1032
|
+
* Clean up API of SSH Executor ([8a215ee3](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8a215ee397360b24be58799d2185c38c7e6a6e9e))
|
1033
|
+
|
1034
|
+
# [7.0.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v7.0.0...v7.0.1) (2019-09-11)
|
1035
|
+
|
1036
|
+
### Fixes
|
1037
|
+
|
1038
|
+
* Clean up api platforms handler ([698d61d0](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/698d61d08330db0c2d45eff689cd3ee3fe3770f7))
|
1039
|
+
|
1040
|
+
# [7.0.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.10.0...v7.0.0) (2019-09-11)
|
1041
|
+
|
1042
|
+
### Breaking changes
|
1043
|
+
|
1044
|
+
* Clean up api of NodesHandler ([0b1011e2](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/0b1011e243e9741de2a36432570acf6ca505b307))
|
1045
|
+
|
1046
|
+
# [6.10.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.9.0...v6.10.0) (2019-09-11)
|
1047
|
+
|
1048
|
+
### New features
|
1049
|
+
|
1050
|
+
* [Feature] Better reporting expected errors in tests: no more useless logging + Count them as errors without failing ([cc566239](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/cc566239b3994f609119851de39b8ade239b7932))
|
1051
|
+
|
1052
|
+
# [6.9.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.8.1...v6.9.0) (2019-09-11)
|
1053
|
+
|
1054
|
+
### New features
|
1055
|
+
|
1056
|
+
* Add tests + Clarified API by adding new accessors + Some bug corrections found during testing ([1a2cb2f5](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/1a2cb2f592a19dd35b8b84e9829b1ed85cd06f49))
|
1057
|
+
|
1058
|
+
# [6.8.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.8.0...v6.8.1) (2019-08-19)
|
1059
|
+
|
1060
|
+
### Fixes
|
1061
|
+
|
1062
|
+
* Make Docker tests be run only on 1 node per service and platform ([b4a52dd5](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b4a52dd5ec10cd0da22b699b6e2bb89809961e01))
|
1063
|
+
* Bug correction on check-node tests result gathering ([dd9cca5e](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/dd9cca5e4ffe6c98d9af784175717f204cdc03b1))
|
1064
|
+
|
1065
|
+
# [6.8.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.7.0...v6.8.0) (2019-08-16)
|
1066
|
+
|
1067
|
+
### New features
|
1068
|
+
|
1069
|
+
* [Feature] Added --password option to use optional interactive mode when we need passwords on SSH connections ([fd1e50cf](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/fd1e50cff21227994671ba0be1fe0b4166d178ce))
|
1070
|
+
|
1071
|
+
### Fixes
|
1072
|
+
|
1073
|
+
* Bug corrections on report tool ([c1a4266a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/c1a4266a93d99153b268c91762670b2e12285511))
|
1074
|
+
|
1075
|
+
# [6.7.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.6.0...v6.7.0) (2019-08-16)
|
1076
|
+
|
1077
|
+
### New features
|
1078
|
+
|
1079
|
+
* [Feature] Add the concept of services associated to nodes + Select nodes by service ([70a87f15](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/70a87f15befc704b446e9107dc23e475f6553a7b))
|
1080
|
+
|
1081
|
+
# [6.6.0](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.9...v6.6.0) (2019-08-16)
|
1082
|
+
|
1083
|
+
### New features
|
1084
|
+
|
1085
|
+
* [Feature] More intelligent linear strategy test that handles linear strategies with explicit merge commits ([dee6438a](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/dee6438a7251ffa6d3b6330e99a214c47bc5a4f1))
|
1086
|
+
|
1087
|
+
# [6.5.9](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.8...v6.5.9) (2019-08-06)
|
1088
|
+
|
1089
|
+
### Fixes
|
1090
|
+
|
1091
|
+
* Republish ([beffa548](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/beffa548cd5ff673600dce14e7729e0e51871817))
|
1092
|
+
|
1093
|
+
# [6.5.8](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.7...v6.5.8) (2019-08-06)
|
1094
|
+
|
1095
|
+
### Fixes
|
1096
|
+
|
1097
|
+
* Promote automatically ([8f461043](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/8f461043e217434619fc52fb0ba04bc6c70edc3e))
|
1098
|
+
|
1099
|
+
# [6.5.7](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.5...v6.5.7) (2019-08-06)
|
1100
|
+
|
1101
|
+
### Fixes
|
1102
|
+
|
1103
|
+
* Bump to republish ([b097ed65](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/b097ed654c4b3285f566289f4ae029494d8e1de0))
|
1104
|
+
|
1105
|
+
# [6.5.5](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.4...v6.5.5) (2019-08-06)
|
1106
|
+
|
1107
|
+
### Fixes
|
1108
|
+
|
1109
|
+
* Hotfix to publish correctly ([74a88b38](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/74a88b3854e2f86954ed7cf510ed936081884198))
|
1110
|
+
|
1111
|
+
# [6.5.4](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.3...v6.5.4) (2019-08-05)
|
1112
|
+
|
1113
|
+
### Fixes
|
1114
|
+
|
1115
|
+
* Bump to redeploy ([905c7efe](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/905c7efe6922d0f1e0922556c7d7b382c7c0041f))
|
1116
|
+
|
1117
|
+
# [6.5.3](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.2...v6.5.3) (2019-08-05)
|
1118
|
+
|
1119
|
+
### Fixes
|
1120
|
+
|
1121
|
+
* Try publishing Gems correctly ([20cf5dea](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/20cf5dea55db71ee52603c10dbf3e3a26a82ae11))
|
1122
|
+
|
1123
|
+
# [6.5.2](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.1...v6.5.2) (2019-08-05)
|
1124
|
+
|
1125
|
+
### Fixes
|
1126
|
+
|
1127
|
+
* Forgot comment ([663f4e72](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/663f4e728c232dd2f5eff09df7b08d854a790f0d))
|
1128
|
+
|
1129
|
+
# [6.5.1](https://github.com/sweet-delights/hybrid-platforms-conductor/compare/v6.5.0...v6.5.1) (2019-08-01)
|
1130
|
+
|
1131
|
+
### Fixes
|
1132
|
+
|
1133
|
+
* Use new dev workflow ([db6bbfa4](https://github.com/sweet-delights/hybrid-platforms-conductor/commit/db6bbfa40839891767ce04977b7ac1d662fbc087))
|