Skip to content

Commit

Permalink
Merge pull request #444 from sdatko/mtu-fix
Browse files Browse the repository at this point in the history
Switch to 1500 MTU consistently

We were having mixed values in some scenarios,
in some places specifying 9000 while in fact
1500 value was used in the deployed infrastructure.
This commit changes it consistently for related uni jobs
to stick with default 1500 MTU.
This change intentionally ommits uni04delta and uni03gamma
(va/hci scenario), as those involve Ceph, which probably
should still rely on MTU 9000, however it is not properly
configured so far as I noticed.

Reviewed-by: Andrew Bays <andrew.bays@gmail.com>
Reviewed-by: Szymon Datko
  • Loading branch information
2 parents 8cbc28e + 935b61e commit 52dbf25
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions examples/dt/uni01alpha/control-plane/nncp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ data:
name: subnet1
prefix-length: 24
iface: enp7s0
mtu: 9000
mtu: 1500
lb_addresses:
- 192.168.122.80-192.168.122.90
endpoint_annotations:
Expand Down Expand Up @@ -108,7 +108,7 @@ data:
cidr: 172.18.0.0/24
name: subnet1
vlan: 21
mtu: 9000
mtu: 1500
prefix-length: 24
iface: storage
vlan: 21
Expand Down
6 changes: 3 additions & 3 deletions examples/dt/uni02beta/control-plane/nncp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ data:
name: subnet1
prefix-length: 24
iface: enp6s0
mtu: 9000
mtu: 1500
lb_addresses:
- 192.168.122.80-192.168.122.90
endpoint_annotations:
Expand Down Expand Up @@ -109,7 +109,7 @@ data:
cidr: 172.18.0.0/24
name: subnet1
vlan: 21
mtu: 9000
mtu: 1500
prefix-length: 24
iface: storage
vlan: 21
Expand Down Expand Up @@ -138,7 +138,7 @@ data:
cidr: 172.20.0.0/24
name: subnet1
vlan: 23
mtu: 9000
mtu: 1500

tenant:
dnsDomain: tenant.example.com
Expand Down
4 changes: 2 additions & 2 deletions examples/dt/uni06zeta/control-plane/nncp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ data:
name: subnet1
prefix-length: 24
iface: enp6s0
mtu: 9000
mtu: 1500
lb_addresses:
- 192.168.122.80-192.168.122.90
endpoint_annotations:
Expand Down Expand Up @@ -103,7 +103,7 @@ data:
cidr: 172.18.0.0/24
name: subnet1
vlan: 21
mtu: 9000
mtu: 1500
prefix-length: 24
iface: storage
vlan: 21
Expand Down
4 changes: 2 additions & 2 deletions examples/dt/uni07eta/control-plane/nncp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ data:
name: subnet1
prefix-length: 24
iface: enp6s0
mtu: 9000
mtu: 1500
lb_addresses:
- 192.168.122.80-192.168.122.90
endpoint_annotations:
Expand Down Expand Up @@ -106,7 +106,7 @@ data:
cidr: 172.18.0.0/24
name: subnet1
vlan: 21
mtu: 9000
mtu: 1500
prefix-length: 24
iface: storage
vlan: 21
Expand Down

0 comments on commit 52dbf25

Please sign in to comment.