-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetup_ONTAP.yml
32 lines (31 loc) · 1.02 KB
/
Setup_ONTAP.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
#Execute the below ONTAP Role after Nexus playbook
- name: Configure ONTAP for FlexPod
hosts: ontap
gather_facts: False
vars_files:
- vars/ontap_main.yml
- group_vars/all.yml
connection: local
roles:
- { role: ONTAP/ontap_primary_setup, tags: [ 'ontap_primary_setup' ] }
- { role: ONTAP/ontap_network, tags: [ 'ontap_network' ] }
- { role: ONTAP/ontap_svm, tags: [ 'ontap_svm' ] }
- { role: ONTAP/ontap_volumes, tags: [ 'ontap_volumes' ] }
- { role: ONTAP/ontap_lifs, tags: [ 'ontap_lifs' ] }
- { role: ONTAP/esxi_datastores, tags: [ 'esxi_datastores' ] }
tags:
- ontap_config_part_1
#Execute the below ONTAP Role after installing and configuring ESXi Hosts
- name: Configure ONTAP NVMe namespace and subsystem
hosts: ontap
gather_facts: False
vars_files:
- vars/ontap_main.yml
- group_vars/all.yml
connection: local
roles:
- { role: ONTAP/ontap_nvme, tags: [ 'ontap_nvme' ] }
- { role: ONTAP/ontap_finalize_setup, tags: [ 'ontap_finalize_setup' ]}
tags:
- ontap_config_part_2