Remove ALL the quotes
This commit is contained in:
parent
597f9bdb92
commit
d82d057956
|
@ -149,54 +149,54 @@ admin_users:
|
||||||
# This should cover most normal usecases, though consult the template files for more detail if needed.
|
# This should cover most normal usecases, though consult the template files for more detail if needed.
|
||||||
networks:
|
networks:
|
||||||
enp1s0f0:
|
enp1s0f0:
|
||||||
device: "enp1s0f0"
|
device: enp1s0f0
|
||||||
type: "nic"
|
type: nic
|
||||||
custom_options:
|
custom_options:
|
||||||
- timing: pre # Forms a "pre-up" statement
|
- timing: pre # Forms a pre-up statement
|
||||||
command: ethtool -K $IFACE rx-gro-hw off
|
command: ethtool -K $IFACE rx-gro-hw off
|
||||||
- timing: post # Forms a "post-up" statement
|
- timing: post # Forms a post-up statement
|
||||||
command: sysctl -w net.ipv6.conf.$IFACE.accept_ra=0
|
command: sysctl -w net.ipv6.conf.$IFACE.accept_ra=0
|
||||||
enp1s0f1:
|
enp1s0f1:
|
||||||
device: "enp1s0f1"
|
device: enp1s0f1
|
||||||
type: "nic"
|
type: nic
|
||||||
custom_options:
|
custom_options:
|
||||||
- timing: pre # Forms a "pre-up" statement
|
- timing: pre # Forms a pre-up statement
|
||||||
command: ethtool -K $IFACE rx-gro-hw off
|
command: ethtool -K $IFACE rx-gro-hw off
|
||||||
- timing: post # Forms a "post-up" statement
|
- timing: post # Forms a post-up statement
|
||||||
command: sysctl -w net.ipv6.conf.$IFACE.accept_ra=0
|
command: sysctl -w net.ipv6.conf.$IFACE.accept_ra=0
|
||||||
bond0:
|
bond0:
|
||||||
device: "bond0"
|
device: bond0
|
||||||
type: "bond"
|
type: bond
|
||||||
bond_mode: "802.3ad"
|
bond_mode: 802.3ad
|
||||||
bond_devices:
|
bond_devices:
|
||||||
- "enp1s0f0"
|
- enp1s0f0
|
||||||
- "enp1s0f1"
|
- enp1s0f1
|
||||||
mtu: 9000 # Forms a "post-up ip link set $IFACE mtu" statement
|
mtu: 9000 # Forms a post-up ip link set $IFACE mtu statement
|
||||||
upstream:
|
upstream:
|
||||||
device: "vlan1000"
|
device: vlan1000
|
||||||
type: "vlan"
|
type: vlan
|
||||||
raw_device: "bond0"
|
raw_device: bond0
|
||||||
mtu: 1500 # Use a lower MTU on upstream for compatibility
|
mtu: 1500 # Use a lower MTU on upstream for compatibility
|
||||||
domain: "{{ local_domain }}"
|
domain: "{{ local_domain }}"
|
||||||
netmask: "24"
|
netmask: 24
|
||||||
subnet: "192.168.100.0"
|
subnet: 192.168.100.0
|
||||||
floating_ip: "192.168.100.10"
|
floating_ip: 192.168.100.10
|
||||||
gateway_ip: "192.168.100.1"
|
gateway_ip: 192.168.100.1
|
||||||
cluster:
|
cluster:
|
||||||
device: "vlan1001"
|
device: vlan1001
|
||||||
type: "vlan"
|
type: vlan
|
||||||
raw_device: "bond0"
|
raw_device: bond0
|
||||||
mtu: 9000 # Use a higher MTU on cluster for performance
|
mtu: 9000 # Use a higher MTU on cluster for performance
|
||||||
domain: "pvc-cluster.local"
|
domain: pvc-cluster.local
|
||||||
netmask: "24"
|
netmask: 24
|
||||||
subnet: "10.0.0.0"
|
subnet: 10.0.0.0
|
||||||
floating_ip: "10.0.0.254"
|
floating_ip: 10.0.0.254
|
||||||
storage:
|
storage:
|
||||||
device: "vlan1002"
|
device: vlan1002
|
||||||
type: "vlan"
|
type: vlan
|
||||||
raw_device: "bond0"
|
raw_device: bond0
|
||||||
mtu: 9000 # Use a higher MTU on cluster for performance
|
mtu: 9000 # Use a higher MTU on cluster for performance
|
||||||
domain: "pvc-storage.local"
|
domain: pvc-storage.local
|
||||||
netmask: "24"
|
netmask: 24
|
||||||
subnet: "10.0.1.0"
|
subnet: 10.0.1.0
|
||||||
floating_ip: "10.0.1.254"
|
floating_ip: 10.0.1.254
|
||||||
|
|
Loading…
Reference in New Issue