Veritas InfoScale™ Installation and Configuration Using Ansible - Windows

Last Published:
Product(s): InfoScale & Storage Foundation (7.4.2)
Platform: Windows

Ansible modules for configuring InfoScale

Use the following Ansible modules in your playbooks to configure Veritas InfoScale product components. Refer to the following table for a list of modules , along with a sample playbook, used for each of the configuration-related operations:

Table: Component configuration-related operations

Operation

Required modules

Sample playbook

Cluster configuration

  • site_facters

  • vcs_config

---
- hosts: win_clus2
  gather_facts: False
  tasks:
  - name: Facters
    veritas_infoscale_win:
     module: site_facters
    register: facts
  - name: Configure cluster
    veritas_infoscale_win:
     module: Vcs_config
     domain_name: winvm.com 
     system_info:
      -  system: system1
         LLTlinks:
           -  name: 'Ethernet1'
              lowpri: 0         
              mac: 'xx-xx-xx-xx-xx-xx'      
           -  name: 'Ethernet2'         
              mac: 'xx-xx-xx-xx-xx-xx'         
              lowpri: 0
      -  system: system2   
         LLTlinks:   
           -  name: 'Ethernet1'         
              mac: 'xx-xx-xx-xx-xx-xx'         
              lowpri: 0     
           -  name: 'Ethernet2'        
              mac: 'xx-xx-xx-xx-xx-xx'      
              lowpri: 0
     cluster_name: testing   
     cluster_id: 12345
     single_node_cluster: 0
     secured_cluster_info:
      Security_Type: Non-Secured
      Admin_User: Administrator
      Password: iXpvmS
     hadhelper_info:
      User: Administrator
      Password: xxxxxx
     state: present 
     seednode: "{{ vtas_seednode }}"
     facters: "{{ groups['all'] | select()|list }}"