dellemc.vxrail.dellemc_vxrail_lcm_retry (2.2.0) — module

Retry a Failed LCM Upgrade

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

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

Install collection

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


Add to requirements.yml

  collections:
    - name: dellemc.vxrail
      version: 2.2.0

Description

This module will retry the LCM full upgrade or partial upgrade if started through the LCM API call.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Retry the LCM Upgrade
  dellemc_vxrail_lcm:
    vxmip: "{{ vxmip }}"
    vcadmin: "{{ vcadmin }}"
    vcpasswd: "{{ vcpasswd }}"
    timeout: "{{ timeout }}"
    api_version_number: "{{ api_version_number }}"

Inputs

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

timeout:
    default: 21600
    description: Time out value for LCM Upgrade Retry, 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

api_version_number:
    description: Specify the API version to perform the upgrade.
    required: false
    type: int

Outputs

LCM_status:
  description: LCM status summary
  returned: always
  sample: "{\n \"LCM_API_Upgrade\": {\n     \"request_id\": \"2ce09bde-d987-4fff-8f90-6fc430e2bfc3\"\
    ,\n     \"status\": \"COMPLETED\"\n }\n \"msg\": \"LCM is successful. Please see\
    \ the /tmp/vxrail_ansible_lcm.log for more details\"\n}"
  type: dict
changed:
  description: Whether or not the resource has changed.
  returned: always
  type: bool