mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update redfish_info.py (#3485)
* Update redfish_info.py * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/remote_management/redfish/redfish_info.py * Update plugins/modules/remote_management/redfish/redfish_info.py * Update plugins/modules/remote_management/redfish/redfish_info.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
parent
0d3c4de6a2
commit
316e1d6bf2
1 changed files with 16 additions and 6 deletions
|
@ -67,7 +67,9 @@ EXAMPLES = '''
|
|||
username: "{{ username }}"
|
||||
password: "{{ password }}"
|
||||
register: result
|
||||
- ansible.builtin.debug:
|
||||
|
||||
- name: Print fetched information
|
||||
ansible.builtin.debug:
|
||||
msg: "{{ result.redfish_facts.cpu.entries | to_nice_json }}"
|
||||
|
||||
- name: Get CPU model
|
||||
|
@ -78,7 +80,9 @@ EXAMPLES = '''
|
|||
username: "{{ username }}"
|
||||
password: "{{ password }}"
|
||||
register: result
|
||||
- ansible.builtin.debug:
|
||||
|
||||
- name: Print fetched information
|
||||
ansible.builtin.debug:
|
||||
msg: "{{ result.redfish_facts.cpu.entries.0.Model }}"
|
||||
|
||||
- name: Get memory inventory
|
||||
|
@ -108,7 +112,9 @@ EXAMPLES = '''
|
|||
username: "{{ username }}"
|
||||
password: "{{ password }}"
|
||||
register: result
|
||||
- ansible.builtin.debug:
|
||||
|
||||
- name: Print fetched information
|
||||
ansible.builtin.debug:
|
||||
msg: "{{ result.redfish_facts.virtual_media.entries | to_nice_json }}"
|
||||
|
||||
- name: Get Volume Inventory
|
||||
|
@ -119,7 +125,8 @@ EXAMPLES = '''
|
|||
username: "{{ username }}"
|
||||
password: "{{ password }}"
|
||||
register: result
|
||||
- ansible.builtin.debug:
|
||||
- name: Print fetched information
|
||||
ansible.builtin.debug:
|
||||
msg: "{{ result.redfish_facts.volume.entries | to_nice_json }}"
|
||||
|
||||
- name: Get Session information
|
||||
|
@ -130,7 +137,9 @@ EXAMPLES = '''
|
|||
username: "{{ username }}"
|
||||
password: "{{ password }}"
|
||||
register: result
|
||||
- ansible.builtin.debug:
|
||||
|
||||
- name: Print fetched information
|
||||
ansible.builtin.debug:
|
||||
msg: "{{ result.redfish_facts.session.entries | to_nice_json }}"
|
||||
|
||||
- name: Get default inventory information
|
||||
|
@ -139,7 +148,8 @@ EXAMPLES = '''
|
|||
username: "{{ username }}"
|
||||
password: "{{ password }}"
|
||||
register: result
|
||||
- ansible.builtin.debug:
|
||||
- name: Print fetched information
|
||||
ansible.builtin.debug:
|
||||
msg: "{{ result.redfish_facts | to_nice_json }}"
|
||||
|
||||
- name: Get several inventories
|
||||
|
|
Loading…
Reference in a new issue