-
Notifications
You must be signed in to change notification settings - Fork 231
USHIFT-7382: Add MTU boundary tests for C2CC and C2CC+IPsec #7024
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
agullon
wants to merge
17
commits into
openshift:main
Choose a base branch
from
agullon:c2cc-ipsec-mtu-tests
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+921
−24
Draft
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
df718da
Add MTU boundary testing infrastructure and 1500-MTU tests
agullon 0d1ca8c
Add c2cc-mtu scenario for plain C2CC at jumbo MTU (9000)
agullon ea155fe
Add c2cc-ipsec-mtu scenario for IPsec at jumbo MTU with pod MTU 8900
agullon bdfed31
Fix jumbo MTU scenarios: guest NICs never negotiated MTU 9000
agullon 6192e76
Add dual-stack support to IPsec/MTU test keywords
agullon 00d78d1
Add IPv6 jumbo-frame libvirt network
agullon a5a3e26
Add c2cc-ipsec-ipv6 scenario
agullon 486558b
Add c2cc-mtu-ipv6 scenario
agullon ce662cc
Add c2cc-ipsec-mtu-ipv6 scenario
agullon ccc6d51
Rename IPv4 C2CC scenarios with -ipv4 suffix
agullon ddb6027
TEMPORARY: disable non-MTU c2cc scenarios for faster CI
agullon 16ce01a
Fix jumbo MTU: set guest NIC MTU via kickstart NetworkManager
agullon e7e8dc8
Fix jumbo-ipv6 network: add bridge to firewall trusted zone
agullon 08cda5b
Fix kickstart MTU: use systemd service instead of nmcli in chroot
agullon 9307398
Fix jumbo-ipv6 scenarios: move bridge IP lookup after network creation
agullon 9f25047
fix: use NM connection profile for jumbo MTU + wait for IPv6 DAD
agullon 8025f5b
fix: triple-layer NIC MTU + IPv6 readiness + test boundaries
agullon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| kind: Pod | ||
| apiVersion: v1 | ||
| metadata: | ||
| name: nettest-pod | ||
| spec: | ||
| terminationGracePeriodSeconds: 0 | ||
| containers: | ||
| - name: nettest | ||
| image: registry.access.redhat.com/ubi9/ubi:9.6 | ||
| command: ["sleep", "infinity"] | ||
| securityContext: | ||
| allowPrivilegeEscalation: false | ||
| capabilities: | ||
| drop: | ||
| - ALL | ||
| runAsNonRoot: true | ||
| runAsUser: 10001 | ||
| seccompProfile: | ||
| type: RuntimeDefault |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <network> | ||
| <name>jumbo-ipv6</name> | ||
| <forward mode="nat"> | ||
| <nat ipv6='yes'> | ||
| <port start='1024' end='65535'/> | ||
| </nat> | ||
| </forward> | ||
| <mtu size='9000'/> | ||
| <ip family="ipv6" address="2001:db8:ca7:fe::1" prefix="96"> | ||
| <dhcp> | ||
| <range start="2001:db8:ca7:fe::1000" end="2001:db8:ca7:fe::2000" /> | ||
| </dhcp> | ||
| </ip> | ||
| </network> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| <network> | ||
| <name>jumbo</name> | ||
| <forward mode='nat'/> | ||
| <mtu size='9000'/> | ||
| <ip address='192.168.150.1' netmask='255.255.255.0'> | ||
| <dhcp> | ||
| <range start='192.168.150.100' end='192.168.150.254'/> | ||
| </dhcp> | ||
| </ip> | ||
| </network> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.