dellemc.openmanage.idrac_os_deployment (2.1.5) — module

Boot to a network ISO image.

| "added in version" 2.9.10 of dellemc.openmanage"

Authors: Felix Stephen (@felixs88), Jagadeesh N V (@jagadeeshnv)

preview | supported by community

Install collection

Install with ansible-galaxy collection install dellemc.openmanage:==2.1.5


Add to requirements.yml

  collections:
    - name: dellemc.openmanage
      version: 2.1.5

Description

Boot to a network ISO image.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
---
- name: Boot to Network ISO
  dellemc.openmanage.idrac_os_deployment:
      idrac_ip: "192.168.0.1"
      idrac_user: "user_name"
      idrac_password: "user_password"
      share_name: "192.168.0.0:/nfsfileshare"
      share_user: "share_user_name"
      share_password: "share_user_pwd"
      iso_image:  "unattended_os_image.iso"
      expose_duration: 180

Inputs

    
idrac_ip:
    description: iDRAC IP Address.
    required: true
    type: str

iso_image:
    description: Network ISO name.
    required: true
    type: str

idrac_port:
    default: 443
    description: iDRAC port.
    required: false
    type: int

idrac_user:
    description: iDRAC username.
    required: true
    type: str

share_name:
    description: CIFS or NFS Network share.
    required: true
    type: str

share_user:
    description: Network share user in the format 'user@domain' or 'domain\\user' if user
      is part of a domain else 'user'. This option is mandatory for CIFS Network Share.
    required: false
    type: str

idrac_password:
    aliases:
    - idrac_pwd
    description: iDRAC user password.
    required: true
    type: str

share_password:
    aliases:
    - share_pwd
    description: Network share user password. This option is mandatory for CIFS Network
      Share.
    required: false
    type: str

expose_duration:
    default: 1080
    description: It is the time taken in minutes for the ISO image file to be exposed
      as a local CD-ROM device to the host server. When the time expires, the ISO image
      gets automatically detached.
    required: false
    type: int

Outputs

msg:
  description: details of the boot to network ISO image operation.
  returned: always
  sample:
    DeleteOnCompletion: 'false'
    InstanceID: DCIM_OSDConcreteJob:1
    JobName: BootToNetworkISO
    JobStatus: Success
    Message: The command was successful.
    MessageID: OSD1
    Name: BootToNetworkISO
    Status: Success
    file: 192.168.0.0:/nfsfileshare/unattended_os_image.iso
    retval: true
  type: dict