forked from infra/ansible
Add buildhw-x86-15 to inventory
Signed-off-by: Greg Sutcliffe <fedora@emeraldreverie.org>
This commit is contained in:
parent
0f17cc12ef
commit
8d7c1a3d5a
3 changed files with 73 additions and 0 deletions
|
|
@ -298,6 +298,7 @@ buildhw-x86-10.rdu3.fedoraproject.org
|
|||
buildhw-x86-12.rdu3.fedoraproject.org
|
||||
buildhw-x86-13.rdu3.fedoraproject.org
|
||||
buildhw-x86-14.rdu3.fedoraproject.org
|
||||
buildhw-x86-15.rdu3.fedoraproject.org
|
||||
buildhw-x86-16.rdu3.fedoraproject.org
|
||||
buildhw-x86-17.rdu3.fedoraproject.org
|
||||
|
||||
|
|
@ -327,6 +328,7 @@ buildhw-x86-10.rdu3.fedoraproject.org
|
|||
buildhw-x86-12.rdu3.fedoraproject.org
|
||||
buildhw-x86-13.rdu3.fedoraproject.org
|
||||
buildhw-x86-14.rdu3.fedoraproject.org
|
||||
buildhw-x86-15.rdu3.fedoraproject.org
|
||||
buildhw-x86-16.rdu3.fedoraproject.org
|
||||
buildhw-x86-17.rdu3.fedoraproject.org
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ buildhw-x86-10.rdu3.fedoraproject.org
|
|||
buildhw-x86-12.rdu3.fedoraproject.org
|
||||
buildhw-x86-13.rdu3.fedoraproject.org
|
||||
buildhw-x86-14.rdu3.fedoraproject.org
|
||||
buildhw-x86-15.rdu3.fedoraproject.org
|
||||
buildhw-x86-16.rdu3.fedoraproject.org
|
||||
buildhw-x86-17.rdu3.fedoraproject.org
|
||||
## Build vm hosts
|
||||
|
|
|
|||
70
inventory/host_vars/buildhw-x86-15.rdu3.fedoraproject.org
Normal file
70
inventory/host_vars/buildhw-x86-15.rdu3.fedoraproject.org
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
---
|
||||
bmc:
|
||||
ip_address: 10.16.160.89
|
||||
ping: true
|
||||
http: true
|
||||
https: true
|
||||
br0_ipv4_ip: 10.16.169.45
|
||||
br0_ipv4_gw: 10.16.169.254
|
||||
br0_ipv4_nm: 24
|
||||
datacenter: rdu3
|
||||
dns1: 10.16.163.33
|
||||
dns2: 10.16.163.34
|
||||
dns_search1: "rdu3.fedoraproject.org"
|
||||
dns_search2: "fedoraproject.org"
|
||||
has_ipv4: yes
|
||||
mac0: b4:45:06:fb:83:4e
|
||||
mac1: b4:45:06:fb:83:4f
|
||||
mac2: 5c:6f:69:81:cf:50
|
||||
mac3: 5c:6f:69:81:cf:51
|
||||
network_connections:
|
||||
# Bridge profile
|
||||
- name: br0
|
||||
state: up
|
||||
type: bridge
|
||||
mtu: 1500
|
||||
autoconnect: yes
|
||||
ip:
|
||||
address:
|
||||
- "{{ br0_ipv4_ip }}/{{ br0_ipv4_nm }}"
|
||||
dhcp4: no
|
||||
dns:
|
||||
- "{{ dns1 }}"
|
||||
- "{{ dns2 }}"
|
||||
dns_search:
|
||||
- "{{ dns_search1 }}"
|
||||
- "{{ dns_search2 }}"
|
||||
gateway4: "{{ br0_ipv4_gw }}"
|
||||
# Bond profile
|
||||
- name: bond0
|
||||
type: bond
|
||||
interface_name: bond0
|
||||
mtu: 1500
|
||||
controller: br0
|
||||
bond:
|
||||
mode: 802.3ad
|
||||
# Port profile for the 1st Ethernet device
|
||||
- name: bond0-port1
|
||||
mac: "{{ mac2 }}"
|
||||
type: ethernet
|
||||
controller: bond0
|
||||
state: up
|
||||
mtu: 1500
|
||||
# Port profile for the 2nd Ethernet device
|
||||
- name: bond0-port2
|
||||
mac: "{{ mac3 }}"
|
||||
type: ethernet
|
||||
controller: bond0
|
||||
state: up
|
||||
mtu: 1500
|
||||
# This is used to populate the inventory fields, only specific keys are allowed, see
|
||||
# https://www.zabbix.com/documentation/current/en/manual/api/reference/host/object#host-inventory
|
||||
zabbix_inventory:
|
||||
date_hw_expiry: ""
|
||||
date_hw_purchase: ""
|
||||
hardware: PowerEdge R450
|
||||
location: RDU3
|
||||
oob_ip: "{{ bmc.ip_address }}"
|
||||
serialno_a: D922FZ3
|
||||
type: Prod_Dedicated_HW
|
||||
vendor: Dell
|
||||
Loading…
Add table
Add a link
Reference in a new issue