ibm.spectrum_virtualize.ibm_svc_manage_ip module – This module manages IP provisioning on IBM Spectrum Virtualize family storage systems

Note

This module is part of the ibm.spectrum_virtualize collection (version 2.0.0).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install ibm.spectrum_virtualize.

To use it in a playbook, specify: ibm.spectrum_virtualize.ibm_svc_manage_ip.

New in ibm.spectrum_virtualize 1.8.0

Synopsis

  • Ansible interface to manage ‘mkip’ and ‘rmip’ commands.

  • This module can run on all IBM Spectrum Virtualize storage running on 8.4.2.0 or later.

Parameters

Parameter

Comments

clustername

string / required

The hostname or management IP of the Spectrum Virtualize storage system.

domain

string

Domain for the Spectrum Virtualize storage system.

Valid when hostname is used for the parameter clustername.

gateway

string

Specifies the gateway address.

Applies when state=present.

ip_address

string / required

Specifies a valid ipv4/ipv6 address.

log_path

string

Path of debug log file.

node

string / required

Specifies the name of the node.

password

string

REST API password for the Spectrum Virtualize storage system.

The parameters username and password are required if not using token to authenticate a user.

port

integer / required

Specifies a port ranging from 1 - 16 to which IP shall be assigned.

portset

string

Specifies the name of the portset object.

shareip

boolean

Specifies the flag when IP is shared between multiple portsets.

Applies when state=present.

Choices:

  • false

  • true

state

string / required

Creates (present) or removes (absent) an IP address.

Choices:

  • "present"

  • "absent"

subnet_prefix

integer

Specifies the prefix of subnet mask.

Applies when state=present.

token

string

The authentication token to verify a user on the Spectrum Virtualize storage system.

To generate a token, use the ibm_svc_auth module.

username

string

REST API username for the Spectrum Virtualize storage system.

The parameters username and password are required if not using token to authenticate a user.

validate_certs

boolean

Validates certification.

Choices:

  • false ← (default)

  • true

vlan

integer

Specifies a vlan id ranging from 1 - 4096.

Applies when state=present.

Notes

Note

  • This module supports check_mode.

Examples

- name: Create IP provisioning
  ibm.spectrum_virtualize.ibm_svc_manage_ip:
   clustername: "{{cluster}}"
   username: "{{username}}"
   password: "{{password}}"
   log_path: /tmp/playbook.debug
   node: node1
   port: 1
   portset: portset0
   ip_address: x.x.x.x
   subnet_prefix: 20
   gateway: x.x.x.x
   vlan: 1
   shareip: true
   state: present
- name: Remove IP provisioning
  ibm.spectrum_virtualize.ibm_svc_manage_ip:
   clustername: "{{cluster}}"
   username: "{{username}}"
   password: "{{password}}"
   log_path: /tmp/playbook.debug
   node: node1
   port: 1
   portset: portset0
   ip_address: x.x.x.x
   state: absent

Authors

  • Sreshtant Bohidar(@Sreshtant-Bohidar)