-
Notifications
You must be signed in to change notification settings - Fork 373
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
Set default tunnel type to geneve #903
Set default tunnel type to geneve #903
Conversation
Thanks for your PR. The following commands are available:
These commands can only be run by members of the vmware-tanzu organization. |
2c3881f
to
d423421
Compare
ci/kind/test-e2e-kind.sh
Outdated
manifest_args="" | ||
if $proxy; then | ||
# See https://github.com/vmware-tanzu/antrea/issues/897 | ||
manifest_args="$manifest_args --proxy --tun vxlan" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be for np, not proxy?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
correct, fixed
5150e60
to
975ed2e
Compare
/test-all |
3ce3de7
to
f9c9db2
Compare
/test-all |
f9c9db2
to
5f3f709
Compare
/test-all |
5f3f709
to
7dc1674
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
7dc1674
to
d2ce384
Compare
/test-all |
/test-windows-conformance |
1 similar comment
/test-windows-conformance |
When running NetworkPolicy tests in Kind, we "force" the tunnel type to VXLAN as we observe some failures with Geneve (see antrea-io#897). We also change the Github CI jobs so that CNP tests are run in their own job. This is to address the issue above, and is also a partial implementation of antrea-io#893.
d2ce384
to
e488a9e
Compare
The patch for security CRDs was incorrect. It seems the behavior for patching ClusterRole rules is "replace" and not "merge".
/test-all |
Traceflow test failed in jenkins-e2e but it seems unrelated (#906 (comment)), so merging as is |
Set default tunnel type to Geneve
Set default tunnel type to Geneve for Antrea instead of VXLAN.
When running NetworkPolicy tests in Kind, we "force" the tunnel type to
VXLAN as we observe some failures with Geneve (see #897).
We also change the Github CI jobs so that CNP tests are run in their own
job. This is to address the issue above, and is also a partial
implementation of #893.