Skip to content

Commit

Permalink
Add newlines in cmd/main.go to test trigger to dev (#113)
Browse files Browse the repository at this point in the history
Pushing a change to a file that will trigger a new build of the docker
image to ensure it automatically releases to dev.

Related to https://linear.app/prefect/issue/PLA-343/automatically-update-prefect-operator-helm-chart-versions-in-ccd-to
  • Loading branch information
mitchnielsen authored Oct 9, 2024
1 parent 21ddfea commit f81064f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ func main() {
setupLog.Error(err, "unable to create controller", "controller", "PrefectServer")
os.Exit(1)
}

if err = (&controller.PrefectWorkPoolReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
Expand All @@ -146,6 +147,7 @@ func main() {
setupLog.Error(err, "unable to set up health check")
os.Exit(1)
}

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

0 comments on commit f81064f

Please sign in to comment.