From 9d072d6b80d4786a6dad4d884c4141515e8702ce Mon Sep 17 00:00:00 2001 From: nhyatt Date: Tue, 14 Mar 2023 12:05:18 -0500 Subject: [PATCH] fail if we are called with external certs --- cmd/webhook/httpServer.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/webhook/httpServer.go b/cmd/webhook/httpServer.go index 4b0dbb3..c83bf80 100644 --- a/cmd/webhook/httpServer.go +++ b/cmd/webhook/httpServer.go @@ -33,6 +33,7 @@ func httpServer(cfg *config.Config) { log.Printf("[INFO] No webserver certificate configured, automatically generating self signed certificate.") serverCertificate = certificate.CreateServerCert() } else { + log.Fatal("[FATAL] Code to support external webserver certificate is not complete yet. ./cmd/webhook/httpServer.go:36") // read certificate from files // check for errors }