Skip to content
Snippets Groups Projects
Commit 98548af0 authored by sedflix's avatar sedflix
Browse files

vpa: admission-controller: add logs for failure to start webhook server


Signed-off-by: default avatarsedflix <sedflix@gmail.com>
parent a255161a
No related branches found
No related tags found
No related merge requests found
......@@ -136,5 +136,8 @@ func main() {
// Start status updates after the webhook is initialized.
statusUpdater.Run(stopCh)
}()
server.ListenAndServeTLS("", "")
err = server.ListenAndServeTLS("", "")
if err != nil {
klog.Fatalf("HTTPS Error: %s", err)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment