-
Notifications
You must be signed in to change notification settings - Fork 64
🐛 catalogd: e2e metrics: Do not use a fixed namespace for metrics tests #1561
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
🐛 catalogd: e2e metrics: Do not use a fixed namespace for metrics tests #1561
Conversation
Follow op-con's lead on specifying a metrics address Signed-off-by: Todd Short <[email protected]>
✅ Deploy Preview for olmv1 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1561 +/- ##
=======================================
Coverage 66.68% 66.68%
=======================================
Files 57 57
Lines 4584 4584
=======================================
Hits 3057 3057
Misses 1302 1302
Partials 225 225
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -108,7 +108,7 @@ func TestCatalogdMetricsExportedEndpoint(t *testing.T) { | |||
require.NoError(t, waitErr, "Error waiting for curl pod to be ready: %s", string(waitOutput)) | |||
|
|||
t.Log("Validating the metrics endpoint") | |||
metricsURL := "https://catalogd-service.olmv1-system.svc.cluster.local:7443/metrics" | |||
metricsURL := "https://catalogd-service." + namespace + ".svc.cluster.local:7443/metrics" |
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.
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
Follow op-con's lead on specifying a metrics address
Description
Reviewer Checklist