diff --git a/pkg/apiserver/webhooks.go b/pkg/apiserver/webhooks.go index 48ecc0d5..a0114467 100644 --- a/pkg/apiserver/webhooks.go +++ b/pkg/apiserver/webhooks.go @@ -66,7 +66,7 @@ func setupWebhooks(ctx context.Context, webhookNs string, certStorageDir string) } func createCerts(webhookNs string, certStorageDir string) ([]byte, error) { - klog.Infoln("creating self-signing TLS cert and key with namespace " + webhookNs + " in directory " + certStorageDir) + klog.Infoln("creating self-signed TLS cert and key with namespace " + webhookNs + " in directory " + certStorageDir) dnsNames := []string{"api", "api." + webhookNs, "api." + webhookNs + ".svc"} commonName := "api." + webhookNs + ".svc"