Skip to content

Commit

Permalink
Ensure webhook is started
Browse files Browse the repository at this point in the history
This ensures webhook is started when controller-manager deployment
becomes ready.
  • Loading branch information
kajinamit committed Aug 17, 2023
1 parent 204eb7d commit 4e52092
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,20 +164,22 @@ func main() {
cinderv1beta1.SetupDefaults()

// Setup webhooks if requested
checker := healthz.Ping
if strings.ToLower(os.Getenv("ENABLE_WEBHOOKS")) != "false" {
if err = (&cinderv1beta1.Cinder{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "Cinder")
os.Exit(1)
}
checker = mgr.GetWebhookServer().StartedChecker()
}

//+kubebuilder:scaffold:builder

if err := mgr.AddHealthzCheck("healthz", healthz.Ping); err != nil {
if err := mgr.AddHealthzCheck("healthz", checker); err != nil {
setupLog.Error(err, "unable to set up health check")
os.Exit(1)
}
if err := mgr.AddReadyzCheck("readyz", healthz.Ping); err != nil {
if err := mgr.AddReadyzCheck("readyz", checker); err != nil {
setupLog.Error(err, "unable to set up ready check")
os.Exit(1)
}
Expand Down

0 comments on commit 4e52092

Please sign in to comment.