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

replace cluster module with vmware.vmware module #98

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 @@
minor_changes:
- cluster_settings - Use the vmware.vmware.cluster module instead of the community.vmware.vmware_cluster module
- cluster_settings - Use the correct module to apply DRS recommendations instead of cluster module
2 changes: 1 addition & 1 deletion roles/cluster_settings/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
when: cluster_settings_drs_enable is defined

- name: Apply DRS Recommendations for Cluster
community.vmware.vmware_cluster:
community.vmware.vmware_cluster_drs_recommendations:
hostname: "{{ cluster_settings_hostname }}"
username: "{{ cluster_settings_username }}"
password: "{{ cluster_settings_password }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
file: ../group_vars.yml

- name: "Create New Cluster: {{ cluster_settings_cluster_name }}"
community.vmware.vmware_cluster:
vmware.vmware.cluster:
hostname: "{{ cluster_settings_hostname }}"
username: "{{ cluster_settings_username }}"
password: "{{ cluster_settings_password }}"
Expand Down Expand Up @@ -65,7 +65,7 @@

always:
- name: "Cleanup Cluster: {{ cluster_settings_cluster_name }}"
community.vmware.vmware_cluster:
vmware.vmware.cluster:
hostname: "{{ cluster_settings_hostname }}"
username: "{{ cluster_settings_username }}"
password: "{{ cluster_settings_password }}"
Expand Down
Loading