Skip to content

Commit

Permalink
starting controller runtime manager (#3471)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Rammer <[email protected]>
  • Loading branch information
hamersaw authored Mar 16, 2023
1 parent c3bdaa4 commit e923f1a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cmd/single/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,14 @@ func startPropeller(ctx context.Context, cfg Propeller) error {
})
}

g.Go(func() error {
err := propellerEntrypoint.StartControllerManager(childCtx, mgr)
if err != nil {
logger.Fatalf(childCtx, "Failed to start controller manager. Error: %v", err)
}
return err
})

if !cfg.Disabled {
g.Go(func() error {
logger.Infof(childCtx, "Starting Flyte Propeller...")
Expand Down

0 comments on commit e923f1a

Please sign in to comment.