-
Notifications
You must be signed in to change notification settings - Fork 361
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
kubernetes: support custom cluster dns domain #1375
Conversation
Signed-off-by: hejianpeng <[email protected]>
Signed-off-by: hejianpeng <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #1375 +/- ##
==========================================
+ Coverage 62.27% 62.47% +0.19%
==========================================
Files 78 78
Lines 10946 10949 +3
==========================================
+ Hits 6817 6840 +23
+ Misses 3676 3660 -16
+ Partials 453 449 -4
|
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, thanks !
@@ -244,7 +253,7 @@ func TestTranslateXdsWithExtension(t *testing.T) { | |||
ir := requireXdsIRFromInputTestData(t, "extension-xds-ir", tc.name+".yaml") | |||
tr := &Translator{ | |||
GlobalRateLimit: &GlobalRateLimitSettings{ | |||
ServiceURL: ratelimit.GetServiceURL("envoy-gateway-system"), | |||
ServiceURL: ratelimit.GetServiceURL("envoy-gateway-system", "cluster.local"), |
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.
maybe use DefaultDNSDomain
is better
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.
it's ok in a test.
What type of PR is this?
What this PR does / why we need it:
kubernetes: support custom cluster dns domain
Which issue(s) this PR fixes:
Fixes #1280