-
Notifications
You must be signed in to change notification settings - Fork 185
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
Create ClusterRoleBinding to fetch in-cluster monitoring metrics #2892
base: main
Are you sure you want to change the base?
Conversation
Skipping CI for Draft Pull Request. |
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.
why should an operator create ClusterRoleBinding as that's the role of olm/admin?
b899911
to
5602ddd
Compare
@leelavg this is required only on ROSA HCP platforms and k8s service monitor needs this cluster rolebinding according to the namespace the user deploys it in. |
doesn't olm already update the namespace in CRB if that's part of the bundle? |
@leelavg |
5602ddd
to
8f5a956
Compare
@@ -0,0 +1,12 @@ | |||
kind: ClusterRoleBinding |
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.
This is not the right file to add custom RBACs. These will be removed when we update generated content.
Add this CRB to ocs-operator/rbac directory.
Then run make update-generated
and make gen-latest-csv
to update the operator bundle.
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
subjects: | ||
- kind: ServiceAccount | ||
name: prometheus-k8s | ||
namespace: openshift-storage |
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.
namespace: openshift-storage |
It can be dropped as we expect OLM to fill it based on namespace where operator gets deployed.
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.
Dropped
Signed-off-by: Kaustav Majumder <[email protected]>
8f5a956
to
325f457
Compare
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: ezio-auditore The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test ocs-operator-bundle-e2e-aws |
1 similar comment
/test ocs-operator-bundle-e2e-aws |
@ezio-auditore: The following test failed, say
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. |
Fixes