-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
🐛 (go/v4): Fix misleading metrics configuration comments in cmd/main.go for metrics certs #4245
🐛 (go/v4): Fix misleading metrics configuration comments in cmd/main.go for metrics certs #4245
Conversation
@varshaprasad96 and @Kavinjsir could you please give a hand on this one? |
@@ -138,6 +132,16 @@ func main() { | |||
// can access the metrics endpoint. The RBAC are configured in 'config/rbac/kustomization.yaml'. More info: | |||
// https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.19.1/pkg/metrics/filters#WithAuthenticationAndAuthorization | |||
metricsServerOptions.FilterProvider = filters.WithAuthenticationAndAuthorization | |||
|
|||
// TODO(user): If CertDir, CertName, and KeyName are not specified, controller-runtime will automatically | |||
// generate certificates for the metrics server. While convenient for development and testing, this setup is |
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.
nit: add self-signed
part
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
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: camilamacedo86, grzesuav, varshaprasad96 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 |
@camilamacedo86 Thanks for the PR! Agree with @grzesuav comment on mentioning self-signed certs, also looks like this PR needs to be rebased. |
…ove documentation
8d72576
to
cd15f73
Compare
New changes are detected. LGTM label has been removed. |
Corrects and clarifies metrics server TLS setup comments to accurately reflect certificate management.