From 038ad9b3a5f16bf3a386dcfd4d441454df4ba1c5 Mon Sep 17 00:00:00 2001 From: bryfry Date: Sun, 30 Jan 2022 04:24:25 +0000 Subject: [PATCH] correct references to service-account-signing-key-file flag --- pkg/kubeapiserver/options/authentication.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubeapiserver/options/authentication.go b/pkg/kubeapiserver/options/authentication.go index d7747f73fb5..0ecbc5c533c 100644 --- a/pkg/kubeapiserver/options/authentication.go +++ b/pkg/kubeapiserver/options/authentication.go @@ -318,7 +318,7 @@ func (o *BuiltInAuthenticationOptions) AddFlags(fs *pflag.FlagSet) { "ServiceAccount tokens. The specified file can contain multiple keys, and the flag can "+ "be specified multiple times with different files. If unspecified, "+ "--tls-private-key-file is used. Must be specified when "+ - "--service-account-signing-key is provided") + "--service-account-signing-key-file is provided") fs.BoolVar(&o.ServiceAccounts.Lookup, "service-account-lookup", o.ServiceAccounts.Lookup, "If true, validate ServiceAccount tokens exist in etcd as part of authentication.")