-
Notifications
You must be signed in to change notification settings - Fork 35
OCPBUGS-63588: [release-4.19] allow tenancy access to metrics tags #618
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
OCPBUGS-63588: [release-4.19] allow tenancy access to metrics tags #618
Conversation
|
@PeterYurkovich: This pull request references Jira Issue OCPBUGS-63588, 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 qe-approved |
|
/hold |
|
/label ux-approved |
|
Holding for console PR |
|
@PeterYurkovich I believe the console fix was merged: openshift/console#15621 can this be merged now? |
|
/test okd-scos-e2e-aws-ovn |
1 similar comment
|
/test okd-scos-e2e-aws-ovn |
|
This PR is the one targetted at 4.19, which still has a pending PR in the console (openshift/console#15645). I'll re-ping the console team members with backend review rights |
|
/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 |
|
/cherry-pick release-4.18 |
|
@PeterYurkovich: once the present PR merges, I will cherry-pick it on top of 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. |
|
/unhold |
|
@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. |
4684341
into
openshift:release-4.19
|
@PeterYurkovich: Jira Issue OCPBUGS-63588: All pull requests linked via external trackers have merged: Jira Issue OCPBUGS-63588 has been moved to the MODIFIED state. 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. |
|
@PeterYurkovich: #618 failed to apply on top of branch "release-4.18": 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#15645) which exposes this proxy. This PR must merge AFTER the one in the console codebase