vmhost-x86-01.rdu3: add initial virthost
This is a first stab at vmhost-x86-01.rdu3. It's already been installed with our kickstart. The network config is just my best guess/first stab. It's 2 nic's as bond devices, with a bridge on top. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
8146e51119
commit
0c46a6dcc3
3 changed files with 58 additions and 0 deletions
|
@ -82,6 +82,7 @@ worker02.ocp.stg.iad2.fedoraproject.org
|
|||
worker03.ocp.stg.iad2.fedoraproject.org
|
||||
worker04.ocp.stg.iad2.fedoraproject.org
|
||||
worker05.ocp.stg.iad2.fedoraproject.org
|
||||
vmhost-x86-01.rdu3.fedoraproject.org
|
||||
|
||||
[powerpc]
|
||||
bvmhost-p09-01.iad2.fedoraproject.org
|
||||
|
|
56
inventory/host_vars/vmhost-x86-01.rdu3.fedoraproject.org
Normal file
56
inventory/host_vars/vmhost-x86-01.rdu3.fedoraproject.org
Normal file
|
@ -0,0 +1,56 @@
|
|||
---
|
||||
br0_ipv4: 10.16.163.11
|
||||
br0_ipv4_gw: 10.16.163.254
|
||||
br0_ipv4_nm: 24
|
||||
br0_port0_mac: "{{ mac1 }}"
|
||||
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: c4:cb:e1:e1:57:0e
|
||||
mac1: c4:cb:e1:e1:57:0f
|
||||
mac2: c4:70:bd:c8:cc:60
|
||||
mac3: c4:70:bd:c8:cc:61
|
||||
network_connections:
|
||||
# Bridge profile
|
||||
- name: br0
|
||||
state: up$
|
||||
type: bridge$
|
||||
mtu: 9000$
|
||||
autoconnect: yes
|
||||
ip:
|
||||
address:
|
||||
- "{{ br0_ipv4 }}/{{ 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: 9000
|
||||
controller: br0
|
||||
bond:
|
||||
mode: 802.3ad
|
||||
state: up
|
||||
# Port profile for the 1st Ethernet device
|
||||
- name: bond0-port1
|
||||
mac: "{{ mac2 }}"
|
||||
type: ethernet
|
||||
controller: bond0
|
||||
state: up
|
||||
mtu: 9000
|
||||
# Port profile for the 2nd Ethernet device
|
||||
- name: bond0-port2
|
||||
mac: "{{ mac3 }}"
|
||||
type: ethernet
|
||||
controller: bond0
|
||||
state: up
|
||||
mtu: 9000
|
|
@ -635,6 +635,7 @@ vmhost-x86-06.iad2.fedoraproject.org
|
|||
vmhost-x86-08.iad2.fedoraproject.org
|
||||
qvmhost-x86-01.iad2.fedoraproject.org
|
||||
qvmhost-x86-02.iad2.fedoraproject.org
|
||||
vmhost-x86-01.rdu3.fedoraproject.org
|
||||
|
||||
|
||||
#[virthost_cloud]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue