Deprecated

Removed in 2.0.0

i

Reason:This Module has been replaced | Alternative:please use M(netapp.elementsw.na_elementsw_check_connections)

community.general.sf_check_connections (1.3.14) — module

Check connectivity to MVIP and SVIP.

Authors: Sumit Kumar (@timuster) <sumit4@netapp.com>

Install collection

Install with ansible-galaxy collection install community.general:==1.3.14


Add to requirements.yml

  collections:
    - name: community.general
      version: 1.3.14

Description

Used to test the management connection to the cluster.

The test pings the MVIP and SVIP, and executes a simple API method to verify connectivity.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
   - name: Check connections to MVIP and SVIP
     community.general.sf_check_connections:
       hostname: "{{ solidfire_hostname }}"
       username: "{{ solidfire_username }}"
       password: "{{ solidfire_password }}"

Inputs

    
mvip:
    description:
    - Optionally, use to test connection of a different MVIP.
    - This is not needed to test the connection to the target cluster.

skip:
    choices:
    - svip
    - mvip
    description:
    - Skip checking connection to SVIP or MVIP.

svip:
    description:
    - Optionally, use to test connection of a different SVIP.
    - This is not needed to test the connection to the target cluster.

hostname:
    description:
    - The hostname or IP address of the SolidFire cluster.
    required: true

password:
    aliases:
    - pass
    description:
    - Password for the specified user.
    required: true

username:
    aliases:
    - user
    description:
    - Please ensure that the user has the adequate permissions. For more information,
      please read the official documentation U(https://mysupport.netapp.com/documentation/docweb/index.html?productID=62636&language=en-US).
    required: true