-
Notifications
You must be signed in to change notification settings - Fork 370
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
Export Service's name to support multi-ports #3561
Conversation
/test-multicluster-e2e |
Codecov Report
@@ Coverage Diff @@
## main #3561 +/- ##
===========================================
+ Coverage 38.12% 64.16% +26.03%
===========================================
Files 114 278 +164
Lines 15271 27821 +12550
===========================================
+ Hits 5822 17850 +12028
+ Misses 8967 8061 -906
- Partials 482 1910 +1428
Flags with carried forward coverage won't be shown. Click here to find out more. |
/test-multicluster-e2e |
080a8c9
to
9c9e882
Compare
/test-multicluster-e2e |
9c9e882
to
fa65a13
Compare
/test-multicluster-e2e |
fa65a13
to
e1a93f8
Compare
/test-multicluster-e2e |
e1a93f8
to
72b8bc7
Compare
/test-multicluster-e2e |
2 similar comments
/test-multicluster-e2e |
/test-multicluster-e2e |
72b8bc7
to
82529b5
Compare
/test-multicluster-e2e |
1 similar comment
/test-multicluster-e2e |
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
docs/multicluster/user-guide.md
Outdated
@@ -412,8 +412,8 @@ converging the update until users correct it to match the Service definition in | |||
ResourceImport. | |||
2. When a member cluster has already exported a Service, e.g.: `default/nginx` with TCP | |||
Port `80`, then other member clusters can only export the same Service with the same Ports | |||
definition. Otherwise, Antrea Multi-cluster Controller will skip converging the mismatched | |||
ResourceExport into the corresponding ResourceImport until users correct it. | |||
definition including port's name. Otherwise, Antrea Multi-cluster Controller will skip converging |
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.
port names or ports' names
converging -> converting?
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.
done
Signed-off-by: Lan Luo <[email protected]>
82529b5
to
93ac6fb
Compare
/skip-all |
/test-multicluster-e2e |
1 similar comment
/test-multicluster-e2e |
In v1.5, we removed original Service name during export/import, but the CNI will fail to realize the Service/Endpoint due to imported Endpoint still has original name, we export Service's name in this PR so we can fix this kind of issue and also support Service with multiple ports.
Fixes #3588
Signed-off-by: Lan Luo [email protected]