diff --git a/pkg/kubeapiserver/options/api_enablement.go b/pkg/kubeapiserver/options/api_enablement.go index fe5accd4f1a..a5d7f625de0 100644 --- a/pkg/kubeapiserver/options/api_enablement.go +++ b/pkg/kubeapiserver/options/api_enablement.go @@ -38,7 +38,8 @@ func NewAPIEnablementOptions() *APIEnablementOptions { func (s *APIEnablementOptions) AddFlags(fs *pflag.FlagSet) { fs.Var(&s.RuntimeConfig, "runtime-config", ""+ "A set of key=value pairs that describe runtime configuration that may be passed "+ - "to apiserver. apis/ key can be used to turn on/off specific api versions. "+ - "apis// can be used to turn on/off specific resources. api/all and "+ + "to apiserver. / (or for the core group) key can be used to "+ + "turn on/off specific api versions. // (or / "+ + "for the core group) can be used to turn on/off specific resources. api/all and "+ "api/legacy are special keys to control all and legacy api versions respectively.") }