-
Notifications
You must be signed in to change notification settings - Fork 351
Migration of kube-rbac-proxy in gitops-operator #1119
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
Merged
openshift-merge-bot
merged 19 commits into
redhat-developer:master
from
akhilnittala:usr/akhil/GITOPS-9256
Apr 22, 2026
Merged
Changes from 8 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
ececb06
Migration of kube-rbac-proxy in gitops-operator
akhilnittala 0b7f0f0
Migration of kube-rbac-proxy in gitops-operator
akhilnittala 698bc5b
Migration of kube-rbac-proxy in gitops-operator
akhilnittala d21c451
Migration of kube-rbac-proxy in gitops-operator
akhilnittala c297414
Migration of kube-rbac-proxy in gitops-operator
akhilnittala cf3fa3e
Migration of kube-rbac-proxy in gitops-operator
akhilnittala de42adc
Migration of kube-rbac-proxy in gitops-operator
akhilnittala c19caa6
Migration of kube-rbac-proxy in gitops-operator
akhilnittala 95c1da4
Merge branch 'master' into usr/akhil/GITOPS-9256
akhilnittala 9090b7f
Migration of kube-rbac-proxy in gitops-operator
akhilnittala efbfd9d
Migration of kube-rbac-proxy in gitops-operator
akhilnittala cad0ecb
Migration of kube-rbac-proxy in gitops-operator
akhilnittala d55e276
Migration of kube-rbac-proxy in gitops-operator
akhilnittala a91a821
Merge branch 'master' into usr/akhil/GITOPS-9256
akhilnittala da9d229
Merge branch 'master' into usr/akhil/GITOPS-9256
akhilnittala de73536
Migration of kube-rbac-proxy in gitops-operator
akhilnittala d9bb509
Migration of kube-rbac-proxy in gitops-operator
akhilnittala 5800af1
Migration of kube-rbac-proxy in gitops-operator
akhilnittala 1250dc0
Merge branch 'master' into usr/akhil/GITOPS-9256
akhilnittala File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # This patch configures the manager to serve metrics securely using | ||
| # controller-runtime's built-in authn/authz (replacing the deprecated | ||
| # kube-rbac-proxy sidecar). | ||
| apiVersion: apps/v1 | ||
| kind: Deployment | ||
| metadata: | ||
| name: controller-manager | ||
| namespace: system | ||
| spec: | ||
| selector: | ||
| matchLabels: | ||
| control-plane: gitops-operator | ||
| template: | ||
| spec: | ||
| containers: | ||
| - name: manager | ||
| args: | ||
| - "--health-probe-bind-address=:8081" | ||
| - "--metrics-bind-address=127.0.0.1:8080" | ||
| - "--leader-elect" | ||
| volumes: | ||
| # Secret created by the service CA operator. | ||
| # We assume that the Kubernetes service exposing the application's pods has the | ||
| # "service.beta.openshift.io/serving-cert-secret-name: kube-rbac-proxy-tls" | ||
| # annotation. | ||
| - name: kube-rbac-proxy-tls | ||
| secret: | ||
| secretName: kube-rbac-proxy-tls | ||
|
akhilnittala marked this conversation as resolved.
Outdated
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
config/rbac/auth_proxy_role.yaml → config/rbac/metrics_role.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
config/rbac/auth_proxy_role_binding.yaml → config/rbac/metrics_role_binding.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.