-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSetup_ONTAP.yml
63 lines (60 loc) · 1.77 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
#Execute the below ONTAP Role after Nexus playbook
- name: Configure ONTAP for FlexPod
hosts: ontap
gather_facts: False
vars_files:
- group_vars/secrets.yml
- vars/ontap_main.yml
- group_vars/all.yml
connection: local
roles:
- { 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
- flexpod_config
#Execute the below ONTAP Role after UCS playbook
- name: Configure ONTAP Boot Storage Setup
hosts: ontap
gather_facts: False
vars_files:
- group_vars/secrets.yml
- vars/ontap_main.yml
- group_vars/all.yml
connection: local
roles:
- { role: ONTAP/ontap_luns, tags: [ 'ontap_luns' ] }
tags:
- ontap_config_part_2
- flexpod_config
#Execute the below ONTAP Role for ONTAP Security Hardening
- name: Configure ONTAP Security Hardening
hosts: ontap
gather_facts: False
vars_files:
- group_vars/secrets.yml
- vars/ontap_main.yml
connection: local
roles:
- { role: ONTAP/ontap_security_hardening, tags: [ 'ontap_security_hardening' ] }
tags:
- ontap_security_hardening_config
#Execute the below ONTAP Role after installing and configuring ESXi Hosts
- name: Configure ONTAP NVMe Setup and finalize ONTAP storage
hosts: ontap
gather_facts: False
vars_files:
- group_vars/secrets.yml
- 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_3
- flexpod_config