dellemc.vxrail.dellemc_vxrail_network_manager_configure (2.2.0) — module

Configures the VxRail Manager IP address

| "added in version" 1.5.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 change the VxRail Manager IP prior to cluster build.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  - name: Configure the VxRail Manager IP address
    dellemc_vxrail_network_manager_configure:
        vxmip: "{{ vxmip }}"
        vcadmin: "{{ vcadmin }}"
        vcpasswd: "{{ vcpasswd }}"
        new_ip: "{{ new_ip }}"
        gateway: "{{ gateway }}"
        netmask: "{{ netmask }}"
        vlan_id: "{{ vlan_id }}"
        timeout: "{{ timeout }}"
        api_version_number: "{{ api_version_number }}"

Inputs

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

new_ip:
    description: The new IP address to assign to the VxRail manager
    required: true
    type: str

gateway:
    description: The gateway IP for the new manager address
    required: true
    type: str

netmask:
    description: The subnet mask for the new manager address
    required: true
    type: str

timeout:
    default: 60
    description: Time out value for setting VxRail IP information, the default value is
      60 seconds
    required: false
    type: int

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

vlan_id:
    description: The VLAN ID for the new manager address
    required: true
    type: str

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

api_version_number:
    description: A specific version number to use for the API call. If not included, will
      use the highest version by default
    required: false
    type: int

Outputs

Network_Manager_Configure:
  description: This module will change the VxRail Manager IP prior to cluster build.
  returned: always
  sample: "{\n    \"state\": \"PENDING\",\n    \"message\": \"The request was sent\
    \ successfully and it needs time to complete in background, please try new VxRail\
    \ Manager IP after a minute or more.\"\n}"
  type: dict