We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d863679 + e147d40 commit 89472a2Copy full SHA for 89472a2
pkg/controller/options.go
@@ -65,9 +65,12 @@ type Options struct {
65
66
// ForControllerRuntime extracts options for controller-runtime.
67
func (o Options) ForControllerRuntime() controller.Options {
68
+ recoverPanic := true
69
+
70
return controller.Options{
71
MaxConcurrentReconciles: o.MaxConcurrentReconciles,
72
RateLimiter: ratelimiter.NewController(),
73
+ RecoverPanic: &recoverPanic,
74
}
75
76
0 commit comments