Please enter search query.
Search <book_title>...
Veritas InfoScale™ Installation, Upgrade, and Configuration Using Ansible - Linux
Last Published:
2023-08-01
Product(s):
InfoScale & Storage Foundation (8.0.2, 8.0, 7.4.3, 7.4.2, 7.4.1)
Platform: Linux
Ansible modules for downloading release matrix
Use the following Ansible modules in your playbooks to download the release matrix json files. Refer to the following table for the module, along with a sample playbook, used for download release matrix operations:
Table: Download release matrix operation
Operation | Required Modules | Sample Playbook |
---|---|---|
Download release matrix | download_release_matrix | Sample playbook - YAML --- - hosts: "{{ vtas_hosts }}" gather_facts: false any_errors_fatal: true tasks: - name: Download Release matrix from SORT veritas_infoscale: module: download_release_matrix local_directory_path: "{{ vtas_local_directory_path }}" |
Sample playbook - JSON --- [ { "hosts": "{{ vtas_hosts }}", "gather_facts": false, "any_errors_fatal": true, "tasks": [ { "name":"Download Release matrix from SORT", "veritas_infoscale":{ "module": "download_release_matrix", "local_directory_path": "{{vtas_local_directory_path}}" } } ] } ] |