Skip to content

Automated deployment of ONTAP tools for VMware vSphere using Ansible

License

Notifications You must be signed in to change notification settings

NetApp/ONTAP-Tools-for-VMware-vSphere

Repository files navigation

Automated deployment of ONTAP Tools for VMware vSphere using Ansible

This repository contains Ansible roles and playbooks for an automated deployment of ONTAP Tools for VMware vSphere.

The ONTAP Tools (previously VSC) deployment is based on the following role:

ontap_tools-config

Environment Validated

The automation has been tested with the below versions of software:

Storage Operating System: ONTAP 9.11.1, 9.12.1, and 9.13.1
VMware vSphere: 7.0, and 8.0

Prerequisites

  1. It is assumed that a VMware vCenter instance has been setup and is available for use, similarly an ONTAP cluster that needs to be integrated with VMware vCenter will also need to be made available.

  2. The user should have an Ansible Control machine that has network reachability to the ONTAP storage system, VMware vCenter and internet access to pull this repository from GitHub. Refer https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html for guidance on setting up an Ansible Control machine.

  3. The Ansible control machine should have the VMware dependency libraries and collections installed

pip3 install pyvmomi
ansible-galaxy collection install community.vmware
pip3 install -r ~/.ansible/collections/ansible_collections/community/vmware/requirements.txt
pip3 install requests

Getting Started

  1. From the Ansible Control machine Download a ZIP version of this repository or clone it using the below command:
git clone https://github.com/NetApp/ONTAP-Tools-for-VMware-vSphere.git
  1. There is a variable file under the vars folder 'ontap_tools_main.yml' for the setup of ONTAP tools for VMware vSphere, that need to be filled out with environment specific parameters prior to executing the playbook.

NOTE: The format of the variable file needs to be maintained as it is, any changes to the structure of the file may lead to failure in execution of the playbook.

NOTE: Sample values are pre-populated against some variables in order to provide the user additional clarity on how the variable needs to be filled out. Please replace the sample values with your environment specific information.

  1. Update the credentials for VMware vCenter

Navigate to the 'vcenter' file within the 'group_vars' directory and update it with the admin credentials for VMware vCenter

Example -

# This variable file is used by the playbooks for the ONTAP tools
vcenter_username: "[email protected]"
vcenter_password: "password"
  1. Update the Inventory file

Open the 'hosts' file and update it with a record for the vCenter IP

Example -

[vcenter]
# vCenter Management IP. List only one vCenter IP. This is used by the playbooks for ONTAP tools.
192.168.10.10
  1. Executing the Playbook

A playbook by name 'Setup_ONTAP_tools.yml' is available at the root of this repository. It invokes the appropriate roles to complete the setup of ONTAP Tools for VMware vSphere.

Execute the playbook from the Ansible Control machine as an admin/ root user using the following command:

ansible-playbook -i hosts Setup_ONTAP_tools.yml

Authors

About

Automated deployment of ONTAP tools for VMware vSphere using Ansible

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published