-
Couldn't load subscription status.
- Fork 34
[release-4.20] OCPBUGS-63440: fetch metric labels with tenancy #617
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
[release-4.20] OCPBUGS-63440: fetch metric labels with tenancy #617
Conversation
|
@PeterYurkovich: This pull request references Jira Issue OCPBUGS-63440, which is valid. 7 validation(s) were run on this bug
Requesting review from QA contact: The bug has been updated to refer to the pull request using the external bug tracker. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/label ux-approved |
|
/lgtm |
|
/hold until openshift/console#15632 is merged |
bb12f3c to
91876c5
Compare
|
/label qe-approved |
|
@PeterYurkovich: This pull request references Jira Issue OCPBUGS-63440, which is invalid:
Comment In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/verified by @etmurasaki |
|
@etmurasaki: This PR has been marked as verified by In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/jira refresh |
|
@etmurasaki: This pull request references Jira Issue OCPBUGS-63440, which is valid. 7 validation(s) were run on this bug
Requesting review from QA contact: In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/remove label qe-approved |
|
/remove-label qe-approved |
|
/label qe-approved |
|
/unhold |
|
/retest |
|
@PeterYurkovich: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jgbernalp, PeterYurkovich The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
c6a042a
into
openshift:release-4.20
|
@PeterYurkovich: Jira Issue Verification Checks: Jira Issue OCPBUGS-63440 Jira Issue OCPBUGS-63440 has been moved to the MODIFIED state and will move to the VERIFIED state when the change is available in an accepted nightly payload. 🕓 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/cherry-pick release-4.19 |
|
@PeterYurkovich: #617 failed to apply on top of branch "release-4.19": In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
This PR looks to fix an issue which caused the prometheus
/labelsendpoint to always go through the non-tenancy API path. This change is needed to allow non-admin users to use the autocomplete functionality in theobserve/metricspages. The thanos-querier service (link) already provides support for this functionality, we are just looking to expose a way for the console users to access this existing endpoint.* Port 9092 provides access to the `/api/v1/query`, `/api/v1/query_range/`, `/api/v1/labels`, `/api/v1/label/*/values`, and `/api/v1/series` endpoints restricted to a given project. Granting access requires binding a user to the `view` cluster role in the project.This PR is being made in conjunction with a second one in the console (openshift/console#15632) which exposes this proxy. This PR must merge AFTER the one in the console codebase