dellemc.vxrail.dellemc_vxrail_lcm_v1_precheck (1.3.0) — module

Perform a health pre-check

| "added in version" 1.3.0 of dellemc.vxrail"

Authors: VxRail Development Team(@VxRailDevTeam) <ansible.team@dell.com>

Install collection

Install with ansible-galaxy collection install dellemc.vxrail:==1.3.0


Add to requirements.yml

  collections:
    - name: dellemc.vxrail
      version: 1.3.0

Description

This module will Perform a separate health pre-check for the VxRail system.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: LCM Precheck with v1 api
  dellemc_vxrail_lcm_v1_precheck:
    vxmip: "{{ vxmip }}"
    vcadmin: "{{ vcadmin }}"
    vcpasswd: "{{ vcpasswd }}"
    bundle_file_locator: "{{ bundle_file_locator }}"
    vc_root_account: "{{ vc_root_account }}"
    vc_root_passwd: "{{ vc_root_passwd }}"
    vxm_root_account: "{{ vxm_root_account }}"
    vxm_root_passwd: "{{ vxm_root_passwd }}"

Inputs

    
vxmip:
    description: The IP address of the VxRail Manager System
    required: true
    type: str

timeout:
    default: 1800
    description: Time out value for LCM Upgrade, the default value is 21600 seconds
    required: false
    type: int

vcadmin:
    description: Administrative account of the vCenter Server the VxRail Manager is registered
      to
    required: true
    type: str

vcpasswd:
    description: The password for the administrator account provided in vcadmin
    required: true
    type: str

vc_root_passwd:
    description: The password for the root account provided in vcroot
    required: true
    type: str

vc_root_account:
    description: root account of the vCenter Server the VxRail Manager is registered to
    required: true
    type: str

vxm_root_passwd:
    description: The password for the root account provided in vxm
    required: true
    type: str

vxm_root_account:
    description: root account of VxRail Manager
    required: true
    type: str

bundle_file_locator:
    description: the path of lcm bundle on vxm, which is recommended under /data/store2
    required: true
    type: str

health_precheck_type:
    default: LCM_PRECHECK
    description: The type of health pre-check to be run. Supported values are LCM_PRECHECK.
    required: false
    type: str

Outputs

LCM_status:
  description: LCM Precheck status summary
  returned: always
  sample: "{\n  \"LCM_V1_Precheck\": {\n         \"request_id\": \"LcmBundleDeployAndPrecheck-d0964e95-1b0c-4c1c-a58a-f9cdf46dab4a\"\
    ,\n         \"status\": \"COMPLETED\"\n     },\n     \"msg\": \"LCM Precheck is\
    \ successful. Please see the /tmp/vxrail_ansible_lcm_v1_precheck.log for more\
    \ details\"\n\n}"
  type: dict
changed:
  description: Whether or not the resource has changed.
  returned: always
  type: bool