Skip to content

Commit e500f94

Browse files
author
logica0419
committed
add missing space in string concatenation (kubeapiserver)
1 parent c064ed8 commit e500f94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/kubeapiserver/options/authentication.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,9 +429,9 @@ func (o *BuiltInAuthenticationOptions) AddFlags(fs *pflag.FlagSet) {
429429

430430
fs.StringVar(&o.ServiceAccounts.JWKSURI, "service-account-jwks-uri", o.ServiceAccounts.JWKSURI, ""+
431431
"Overrides the URI for the JSON Web Key Set in the discovery doc served at "+
432-
"/.well-known/openid-configuration. This flag is useful if the discovery doc"+
432+
"/.well-known/openid-configuration. This flag is useful if the discovery doc "+
433433
"and key set are served to relying parties from a URL other than the "+
434-
"API server's external (as auto-detected or overridden with external-hostname). ")
434+
"API server's external (as auto-detected or overridden with external-hostname).")
435435

436436
fs.DurationVar(&o.ServiceAccounts.MaxExpiration, "service-account-max-token-expiration", o.ServiceAccounts.MaxExpiration, ""+
437437
"The maximum validity duration of a token created by the service account token issuer. If an otherwise valid "+

0 commit comments

Comments
 (0)