summaryrefslogtreecommitdiffstats
path: root/ansible_collections/cisco/intersight/playbooks/hcl_status.yml
blob: ede236a3b6eb94e670565482be7d47445a40c50e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
#
# The hosts group used is provided by the group variable or defaulted to 'Intersight_Servers'.
# You can specify a specific host (or host group) on the command line:
#   ansible-playbook ... -e group=<your host group>
#   e.g., ansible-playbook server_profiles.yml -e group=TME_Demo
#
- name: Get HCL status and write to file
  hosts: "{{ group | default('Intersight_Servers') }}"
  connection: local
  gather_facts: false
  vars:
    # Create an anchor for api_info that can be used throughout the file
    api_info: &api_info
      # if api_key vars are omitted, INTERSIGHT_API_KEY_ID, INTERSIGHT_API_PRIVATE_KEY,
      # and INTERSIGHT_API_URI environment variables used for API key data
      api_private_key: "{{ api_private_key | default(omit) }}"
      api_key_id: "{{ api_key_id | default(omit) }}"
      api_uri: "{{ api_uri | default(omit) }}"
      validate_certs: "{{ validate_certs | default(omit) }}"
  tasks:
    # Get HclStatus
    - name: Get HCL Status for Server
      cisco.intersight.intersight_rest_api:
        <<: *api_info
        resource_path: /cond/HclStatuses
        query_params:
          $filter: "ManagedObject.Moid eq '{{ server_moid }}'"
      delegate_to: localhost
      register: hcl_resp
      when:
        - server_moid is defined
    # Create .csv file with version and status information
    - name: Create .csv file with version and status information
      ansible.builtin.copy:
        content: 'Name, FW version, OS vendor, OS version, HW status, SW status, Overall Status

          {% for host in hostvars %}
            {% set vars = hostvars[host | string] %}
            {% if vars.hcl_resp.api_response is defined %}
              {{ vars.inventory_hostname }}, {{ vars.hcl_resp.api_response.HclFirmwareVersion }}, {{ vars.hcl_resp.api_response.HclOsVendor }},
              {{ vars.hcl_resp.api_response.HclOsVersion }}, {{ vars.hcl_resp.api_response.HardwareStatus }},
              {{ vars.hcl_resp.api_response.SoftwareStatus }}, {{ vars.hcl_resp.api_response.Status }} {{ vars.hcl_resp.api_response.ServerReason }}

            {% endif %}
          {% endfor %}
          '
        dest: /tmp/hcl_status.csv
        backup: false
        mode: '0644'
      run_once: true
      delegate_to: localhost