Skip to content

Commit

Permalink
Fix/role names to fqcn (#116)
Browse files Browse the repository at this point in the history
* changed esci_maintenance_mode role to FQCN

* changed manage_folder roles to FQCN

* changed provision_vcenter roles to FQCN

* added changelog
  • Loading branch information
OrrBG authored Dec 18, 2024
1 parent b3ea45c commit 4ea360d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions changelogs/fragments/116-fix-role-names-to-FQCN.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
trivial:
- info - changed the role names to Fully Qualified Collection Names in roles Documentation
4 changes: 2 additions & 2 deletions roles/esxi_maintenance_mode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ N/A
- name: Put Host In Maintenance Mode
hosts: localhost
roles:
- role: esxi_maintenance_mode
- role: cloud.vmware_ops.esxi_maintenance_mode
vars:
esxi_maintenance_mode_validate_certs: false
esxi_maintenance_mode_hostname: vcenter.example # or IP like 192.168.123.5
Expand All @@ -87,7 +87,7 @@ N/A
- name: Take Host Out Of Maintenance Mode
hosts: localhost
roles:
- role: esxi_maintenance_mode
- role: cloud.vmware_ops.esxi_maintenance_mode
vars:
esxi_maintenance_mode_validate_certs: false
esxi_maintenance_mode_hostname: vcenter.example # or IP like 192.168.123.5
Expand Down
8 changes: 4 additions & 4 deletions roles/manage_folder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ N/A
tasks:
- name: Create Folder Trees
ansible.builtin.include_role:
name: manage_folder
name: cloud.vmware_ops.manage_folder
vars:
manage_folder_state: present
manage_folder_folder_name: "{{ item }}"
Expand All @@ -112,7 +112,7 @@ N/A

- name: Create Folders Without Managing Full Tree
ansible.builtin.include_role:
name: manage_folder
name: cloud.vmware_ops.manage_folder
vars:
manage_folder_state: present
manage_folder_folder_name: "{{ item }}"
Expand All @@ -123,7 +123,7 @@ N/A

- name: Create A Folder With A Slash In It
ansible.builtin.include_role:
name: manage_folder
name: cloud.vmware_ops.manage_folder
vars:
manage_folder_state: present
manage_folder_folder_name: security/syseng
Expand All @@ -132,7 +132,7 @@ N/A

- name: Delete The Whole Tree
ansible.builtin.include_role:
name: manage_folder
name: cloud.vmware_ops.manage_folder
vars:
manage_folder_state: absent
manage_folder_folder_name: production
Expand Down
2 changes: 1 addition & 1 deletion roles/provision_vcenter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ The vCenter Server Appliance ISO should be accessible from the host running thes
---
- hosts: localhost
roles:
- role: provision_vcenter
- role: cloud.vmware_ops.provision_vcenter
vars:
provision_vcenter_validate_certs: false
provision_vcenter_hostname: my-esxi-host.example # or IP like 192.168.123.5
Expand Down

0 comments on commit 4ea360d

Please sign in to comment.