forked from HewlettPackard/oneview-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oneview_interconnect_facts.yml
123 lines (102 loc) · 4.04 KB
/
oneview_interconnect_facts.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
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
###
# Copyright (2016-2021) 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"
- port_name: 'd3' # provide your interconnect port_name
- subport_number: 1 # provide a subport_number
tasks:
- name: Gather facts about all interconnects
oneview_interconnect_facts:
config: "{{ config }}"
delegate_to: localhost
- debug: msg="{{interconnects | map(attribute='name') | list }}"
- name: Gather paginated, filtered and sorted facts about Interconnects
oneview_interconnect_facts:
config: "{{ config }}"
params:
start: 0
count: 5
sort: 'name:descending'
filter: "enclosureName='0000A66101'"
- debug: var=interconnects
- set_fact: interconnect_name="{{ interconnects[0]['name'] }}"
- name: Gather facts about the interconnect that matches the specified name
oneview_interconnect_facts:
config: "{{ config }}"
name: "{{ interconnect_name }}"
delegate_to: localhost
- debug: var=interconnects
- name: Gather facts about the interconnect that matches the specified name and its name servers
oneview_interconnect_facts:
config: "{{ config }}"
name: "{{ interconnect_name }}"
options:
- nameServers
delegate_to: localhost
- debug: msg="Interconnect '{{ interconnects[0]['name'] }}'"
- debug: var=interconnect_name_servers
- name: Gather facts about statistics for the Interconnect that matches the specified name
oneview_interconnect_facts:
config: "{{ config }}"
name: "{{ interconnect_name }}"
options:
- statistics
- debug: msg="Interconnect '{{ interconnects[0]['name'] }}'"
- debug: var=interconnect_statistics
- name: Get the port statistics for the specified interconnect name and port name
oneview_interconnect_facts:
config: "{{ config }}"
name: "{{ interconnect_name }}"
options:
- portStatistics: "{{ port_name }}"
- debug: msg="Interconnect '{{ interconnects[0]['name'] }}'"
- debug: var=interconnect_port_statistics
- name: Get the subport statistics
oneview_interconnect_facts:
config: "{{ config }}"
name: "{{ interconnect_name }}"
options:
- subPortStatistics:
portName: "{{ port_name }}"
subportNumber: "{{ subport_number }}"
- debug: msg="Interconnect '{{ interconnects[0]['name'] }}'"
- debug: var=interconnect_subport_statistics
- name: Gather facts about all the Interconnect ports
oneview_interconnect_facts:
config: "{{ config }}"
name: "{{ interconnect_name }}"
options:
- ports
- debug: msg="Interconnect '{{ interconnects[0]['name'] }}'"
- debug: var=interconnect_ports
- name: Gather facts about an Interconnect port
oneview_interconnect_facts:
config: "{{ config }}"
name: "{{ interconnect_name }}"
options:
- port: "{{ port_name }}"
- debug: msg="Interconnect '{{ interconnects[0]['name'] }}'"
- debug: var=interconnect_port
- name: Gather facts about the small-form pluggable modules
oneview_interconnect_facts:
config: "{{ config }}"
name: "{{ interconnect_name }}"
options:
- pluggableModuleInformation
- debug: msg="Interconnect '{{ interconnects[0]['name'] }}'"
- debug: var=interconnect_pluggable_module_information