diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:52:22 +0000 |
commit | 38b7c80217c4e72b1d8988eb1e60bb6e77334114 (patch) | |
tree | 356e9fd3762877d07cde52d21e77070aeff7e789 /ansible_collections/dellemc/openmanage/playbooks/roles/README.md | |
parent | Adding upstream version 7.7.0+dfsg. (diff) | |
download | ansible-38b7c80217c4e72b1d8988eb1e60bb6e77334114.tar.xz ansible-38b7c80217c4e72b1d8988eb1e60bb6e77334114.zip |
Adding upstream version 9.4.0+dfsg.upstream/9.4.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/dellemc/openmanage/playbooks/roles/README.md')
-rw-r--r-- | ansible_collections/dellemc/openmanage/playbooks/roles/README.md | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/ansible_collections/dellemc/openmanage/playbooks/roles/README.md b/ansible_collections/dellemc/openmanage/playbooks/roles/README.md new file mode 100644 index 000000000..0535438b3 --- /dev/null +++ b/ansible_collections/dellemc/openmanage/playbooks/roles/README.md @@ -0,0 +1,56 @@ +# Roles Playbooks + +### Using the Example playbooks + +1. Update the inventory +Update the idrac IP's, hostnames in the `inventory` file. + +1. Update the varaibles required for a role under `vars_files` folder. + +1. Run the following command to run the role +`ansible-playbook <role_folder>/<role_file>.yml -i inventory + +### Folder Tree + +``` +. +├── idrac_attributes +│ └── idrac_attributes.yml +├── idrac_bios +│ └── idrac_bios.yml +├── idrac_certificate +│ └── idrac_certificate.yml +├── idrac_export_server_config_profile +│ └── idrac_export_server_config_profile.yml +├── idrac_firmware +│ └── idrac_firmware.yml +├── idrac_gather_facts +│ └── idrac_gather_facts.yml +├── idrac_import_server_config_profile +│ └── idrac_import_server_config_profile.yml +├── idrac_os_deployment +│ └── idrac_os_deployment.yml +├── idrac_reset +│ └── idrac_reset.yml +├── idrac_server_powerstate +│ └── idrac_server_powerstate.yml +├── idrac_storage_controller +│ └── idrac_storage_controller.yml +├── inventory +├── README.md +├── redfish_firmware +│ └── redfish_firmware.yml +├── redfish_storage_volume +│ └── redfish_storage_volume.yml +└── vars_files + ├── bios.yml + ├── certificates.yml + ├── credentials.yml + ├── export.yml + ├── firmware.yml + ├── import.yml + ├── osd.yml + ├── reset.yml + └── storage_controller.yml + └── storage.yml +``` |