diff --git a/pkg/server/options/audit.go b/pkg/server/options/audit.go index 341f87ee8..a272b025f 100644 --- a/pkg/server/options/audit.go +++ b/pkg/server/options/audit.go @@ -44,7 +44,7 @@ func (o *AuditLogOptions) AddFlags(fs *pflag.FlagSet) { fs.IntVar(&o.MaxBackups, "audit-log-maxbackup", o.MaxBackups, "The maximum number of old audit log files to retain.") fs.IntVar(&o.MaxSize, "audit-log-maxsize", o.MaxSize, - "The maximum size in megabytes of the audit log file before it gets rotated. Defaults to 100MB.") + "The maximum size in megabytes of the audit log file before it gets rotated.") } func (o *AuditLogOptions) ApplyTo(c *server.Config) error { diff --git a/pkg/server/options/serving.go b/pkg/server/options/serving.go index cfa4d1dba..d536a3cb4 100644 --- a/pkg/server/options/serving.go +++ b/pkg/server/options/serving.go @@ -101,7 +101,7 @@ func (s *SecureServingOptions) AddFlags(fs *pflag.FlagSet) { "don't serve HTTPS at all.") fs.StringVar(&s.ServerCert.CertDirectory, "cert-dir", s.ServerCert.CertDirectory, ""+ - "The directory where the TLS certs are located (by default /var/run/kubernetes). "+ + "The directory where the TLS certs are located. "+ "If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored.") fs.StringVar(&s.ServerCert.CertKey.CertFile, "tls-cert-file", s.ServerCert.CertKey.CertFile, ""+