ghmsalinda.test.dellemc_vxrail_day1 (1.3.0) — module

Perform the Day1 first run initialization of a VxRail Cluster

| "added in version" 1.1.0 of ghmsalinda.test"

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

Install collection

Install with ansible-galaxy collection install ghmsalinda.test:==1.3.0


Add to requirements.yml

  collections:
    - name: ghmsalinda.test
      version: 1.3.0

Description

This module will configure and deploy a new VxRail cluster based on the provided day1 json file.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Day1 initialization
  dellemc_vxrail_day1:
    vxmip: "{{ vxmip }}"
    vcadmin: "{{ vcadmin }}"
    vcpasswd: "{{ vcpasswd }}"
    day1json_file: "{{ day1json_file }}"

Inputs

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

timeout:
    default: 18000
    description: Time out value for Day1 bring up, the default value is 18000 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

day1json_file:
    description: The path of Day1 Json file.
    required: true
    type: str

Outputs

changed:
  description: Whether or not the resource has changed.
  returned: always
  type: bool
installation_status:
  description: day1 initialization status summary
  returned: always
  sample: "{\n \"Day1DryRun\": {\n     \"request_id\": \"2ce09bde-d987-4fff-8f90-6fc430e2bfc3\"\
    ,\n     \"status\": \"COMPLETED\"\n },\n \"Day1Initialization\": {\n     \"request_id\"\
    : \"433d0a61-06e7-4cb8-a1eb-985ab9a8b5dd\",\n     \"status\": \"COMPLETED\"\n\
    \ }\n \"msg\": \"Day1 initialization is successful. Please see the /tmp/vxrail_ansible_day1.log\
    \ for more details\"\n}"
  type: dict