fail if we are called with external certs

This commit is contained in:
Hyatt 2023-03-14 12:05:18 -05:00
parent dd19b87e8d
commit 9d072d6b80
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -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
}