forked from HewlettPackard/oneview-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoneview_enclosure_group.yml
90 lines (85 loc) · 2.89 KB
/
oneview_enclosure_group.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
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
###
# Copyright (2016-2017) Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###
---
- hosts: all
vars:
config: "{{ playbook_dir }}/oneview_config.json"
tasks:
- name: Create an Enclosure Group
oneview_enclosure_group:
config: "{{ config }}"
state: present
data:
name: "Enclosure Group 1"
stackingMode: "Enclosure"
interconnectBayMappings:
- interconnectBay: 1
- interconnectBay: 2
- interconnectBay: 3
- interconnectBay: 4
- interconnectBay: 5
- interconnectBay: 6
- interconnectBay: 7
- interconnectBay: 8
configurationScript: "# example script"
delegate_to: localhost
- name: Do nothing with the Enclosure Group when no changes are provided
oneview_enclosure_group:
config: "{{ config }}"
state: present
data:
name: "Enclosure Group 1"
stackingMode: "Enclosure"
interconnectBayMappings:
- interconnectBay: 1
- interconnectBay: 2
- interconnectBay: 3
- interconnectBay: 4
- interconnectBay: 5
- interconnectBay: 6
- interconnectBay: 7
- interconnectBay: 8
delegate_to: localhost
- name: Update the Enclosure Group changing the name attribute
oneview_enclosure_group:
config: "{{ config }}"
state: present
data:
name: "Enclosure Group 1"
newName: "Enclosure Group 1 (renamed)"
delegate_to: localhost
- name: Update the Enclosure Group configuration script
oneview_enclosure_group:
config: "{{ config }}"
state: present
data:
name: "Enclosure Group 1 (renamed)"
configurationScript: "# script (updated)"
delegate_to: localhost
- name: Delete the Enclosure Group
oneview_enclosure_group:
config: "{{ config }}"
state: absent
data:
name: "Enclosure Group 1 (renamed)"
delegate_to: localhost
- name: Do nothing when Enclosure Group is absent
oneview_enclosure_group:
config: "{{ config }}"
state: absent
data:
name: "Enclosure Group 1 (renamed)"
delegate_to: localhost