summaryrefslogtreecommitdiffstats
path: root/ansible_collections/dellemc/unity/playbooks/modules/volume.yml
blob: 45f62c01f71c45a9c0dc29d4266cb557626ff693 (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
---
- name: Volume Operations
  hosts: localhost
  connection: local
  vars:
    unispherehost: '10.*.*.*'
    validate_certs: false
    username: 'user'
    password: '**'
    vol_name: "Ansible_vol1_test"
    new_vol_name: "New_Ansible_vol1_test"
    size: 2
    pool_name: "Ansible_Unity_SP_2"
    cap_gb: "GB"
    description: "Ansible demo"
    snap_schedule: "Ansible_vol_snap_schedule1"
    io_limit_policy: "Ansible_IO_limit1"
    tiering_policy: "LOWEST"
    is_thin: true
    compression: true
    sp: "SPA"
    host_name: "10.*.*.*"
    host_id: "Host_929"
    vol_hosts:
      - host_name: "10.*.*.*"
        hlu: 1
      - host_id: "Host_929"
        hlu: 3
    hlu: 2
    state_present: "present"
    state_absent: "absent"
    state_mapped: "mapped"
    state_unmapped: "unmapped"

  tasks:
    - name: Create Volume
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_name: "{{ vol_name }}"
        description: "{{ description }}"
        pool_name: "{{ pool_name }}"
        size: "{{ size }}"
        cap_unit: "{{ cap_gb }}"
        tiering_policy: "{{ tiering_policy }}"
        is_thin: true
        compression: true
        advanced_dedup: true
        state: "{{ state_present }}"
      register: vol_result

    - name: Create Volume - Idempotency
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_name: "{{ vol_name }}"
        description: "{{ description }}"
        pool_name: "{{ pool_name }}"
        size: "{{ size }}"
        cap_unit: "{{ cap_gb }}"
        tiering_policy: "{{ tiering_policy }}"
        is_thin: true
        compression: true
        advanced_dedup: true
        state: "{{ state_present }}"

    - name: Set vol_id
      ansible.builtin.set_fact:
        vol_id: "{{ vol_result.volume_details.id }}"

    - name: Expand Volume by volume id
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        size: 5
        cap_unit: "{{ cap_gb }}"
        state: "{{ state_present }}"

    - name: Modify Volume attributes
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_name: "{{ vol_name }}"
        tiering_policy: "AUTOTIER"
        snap_schedule: "{{ snap_schedule }}"
        io_limit_policy: "{{ io_limit_policy }}"
        is_thin: true
        compression: true
        advanced_dedup: true
        state: "{{ state_present }}"

    - name: Modify Volume attributes - Idempotency
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_name: "{{ vol_name }}"
        tiering_policy: "AUTOTIER"
        snap_schedule: "{{ snap_schedule }}"
        io_limit_policy: "{{ io_limit_policy }}"
        is_thin: true
        compression: true
        advanced_dedup: true
        state: "{{ state_present }}"

    - name: Remove snap_schedule from a Volume
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_name: "{{ vol_name }}"
        snap_schedule: ""
        state: "{{ state_present }}"

    - name: Map Host by host_name to Volume
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        host_name: "{{ host_name }}"
        hlu: "{{ hlu }}"
        mapping_state: "{{ state_mapped }}"
        state: "{{ state_present }}"

    - name: Map Host by host_name to Volume- Idempotency
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        host_name: "{{ host_name }}"
        hlu: 2
        mapping_state: "{{ state_mapped }}"
        state: "{{ state_present }}"

    - name: Unmap Host by host_name from Volume
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        host_name: "{{ host_name }}"
        mapping_state: "{{ state_unmapped }}"
        state: "{{ state_present }}"

    - name: Unmap Host by host_name from Volume -Idempotency
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        host_name: "{{ host_name }}"
        mapping_state: "{{ state_unmapped }}"
        state: "{{ state_present }}"

    - name: Map Multiple Hosts to a Volume
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        hosts: "{{ vol_hosts }}"
        mapping_state: "{{ state_mapped }}"
        state: "{{ state_present }}"

    - name: Map Multiple Hosts to a Volume - Idempotency
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        hosts: "{{ vol_hosts }}"
        mapping_state: "{{ state_mapped }}"
        state: "{{ state_present }}"

    - name: Unmap Hosts from Volume
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        hosts: "{{ vol_hosts }}"
        mapping_state: "{{ state_unmapped }}"
        state: "{{ state_present }}"

    - name: Unmap Hosts from Volume - Idempotency
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        hosts: "{{ vol_hosts }}"
        mapping_state: "{{ state_unmapped }}"
        state: "{{ state_present }}"

    - name: Get details of volume using id
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        state: "present"

    - name: Delete a volume using id
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        state: "absent"

    - name: Delete a volume using id -Idempotency
      dellemc.unity.volume:
        unispherehost: "{{ unispherehost }}"
        username: "{{ username }}"
        password: "{{ password }}"
        validate_certs: "{{ validate_certs }}"
        vol_id: "{{ vol_id }}"
        state: "absent"