Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cluster_upgrade: Add default random uuid to engine_correlation_id #624

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- cluster_upgrade - Add default random uuid to engine_correlation_id (https://github.com/oVirt/ovirt-ansible-collection/pull/624).
2 changes: 1 addition & 1 deletion roles/cluster_upgrade/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Role Variables
| healing_in_progress_checks | 6 | Maximum number of attempts to check if gluster healing is still in progress. |
| healing_in_progress_check_delay | 300 | The delay in seconds between each attempt to check if gluster healing is still in progress. |
| wait_to_finish_healing | 5 | Delay in minutes to wait to finish gluster healing process after successful host upgrade. |
| engine_correlation_id | UNDEF | The correlation id with which be the role run. |
| engine_correlation_id | <i>Randomly generated UUID</i> | The correlation id with which be the role run. |

Example Playbook
----------------
Expand Down
1 change: 1 addition & 0 deletions roles/cluster_upgrade/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ pinned_vms_names: []
healing_in_progress_checks: 6
healing_in_progress_check_delay: 300
wait_to_finish_healing: 5
engine_correlation_id: "{{ 99999999 | random | to_uuid }}"