forked from operator-framework/operator-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating helm scaffolding based on pr comments
Signed-off-by: Adam D. Cornett <[email protected]>
- Loading branch information
1 parent
b9f7dbe
commit c32ccdb
Showing
6 changed files
with
22 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -39,7 +39,7 @@ type Flags struct { | |
SuppressOverrideValues bool | ||
EnableHTTP2 bool | ||
SecureMetrics bool | ||
MetricsAuthNAuthZ bool | ||
MetricsRequireRBAC bool | ||
|
||
// If not nil, used to deduce which flags were set in the CLI. | ||
flagSet *pflag.FlagSet | ||
|
@@ -78,16 +78,14 @@ see https://github.com/kubernetes-sigs/controller-runtime/issues/895 for more in | |
// TODO(2.0.0): remove | ||
flagSet.StringVar(&f.MetricsBindAddress, | ||
"metrics-addr", | ||
"0", | ||
"The address the metrics endpoint binds to. "+ | ||
"Use :8443 for HTTPS or :8080 for HTTP, or leave as 0 to disable the metrics service.", | ||
":8080", | ||
"The address the metric endpoint binds to", | ||
) | ||
_ = flagSet.MarkDeprecated("metrics-addr", "use --metrics-bind-address instead") | ||
flagSet.StringVar(&f.MetricsBindAddress, | ||
"metrics-bind-address", | ||
"0", | ||
"The address the metrics endpoint binds to. "+ | ||
"Use :8443 for HTTPS or :8080 for HTTP, or leave as 0 to disable the metrics service.", | ||
":8080", | ||
"The address the metric endpoint binds to", | ||
) | ||
// TODO(2.0.0): for Go/Helm the port used is: 8081 | ||
// update it to keep the project aligned to the other | ||
|
@@ -137,10 +135,11 @@ see https://github.com/kubernetes-sigs/controller-runtime/issues/895 for more in | |
false, | ||
"enables secure serving of the metrics endpoint", | ||
) | ||
flagSet.BoolVar(&f.MetricsAuthNAuthZ, | ||
"metrics-authn-authz", | ||
flagSet.BoolVar(&f.MetricsRequireRBAC, | ||
"metrics-require-rbac", | ||
false, | ||
"enables protection of the metrics endpoint with authn/authz") | ||
"enables protection of the metrics endpoint with RBAC-based authn/authz."+ | ||
"see https://pkg.go.dev/sigs.k8s.io/[email protected]/pkg/metrics/filters#WithAuthenticationAndAuthorization for more info") | ||
} | ||
|
||
// ToManagerOptions uses the flag set in f to configure options. | ||
|
@@ -187,7 +186,7 @@ func (f *Flags) ToManagerOptions(options manager.Options) manager.Options { | |
} | ||
options.Metrics.SecureServing = f.SecureMetrics | ||
|
||
if f.MetricsAuthNAuthZ { | ||
if f.MetricsRequireRBAC { | ||
// FilterProvider is used to protect the metrics endpoint with authn/authz. | ||
// These configurations ensure that only authorized users and service accounts | ||
// can access the metrics endpoint. The RBAC are configured in 'config/rbac/kustomization.yaml'. More info: | ||
|
This file contains 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 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 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 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