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.
1 parent 11e57aa commit 35324ebCopy full SHA for 35324eb
pkg/operator/starter.go
@@ -474,6 +474,11 @@ func prepareOauthAPIServerOperator(
474
statusControllerOptions = append(statusControllerOptions, apiservercontrollerset.WithStatusControllerPdbCompatibleHighInertia("(APIServer|OAuthServer)"))
475
}
476
477
+ // configure version removal so it removes versions it doesn't know about.
478
+ statusControllerOptions = append(statusControllerOptions, func(ss *status.StatusSyncer) *status.StatusSyncer {
479
+ return ss.WithVersionRemoval()
480
+ })
481
+
482
const apiServerConditionsPrefix = "APIServer"
483
484
apiServerControllers, err := apiservercontrollerset.NewAPIServerControllerSet(
0 commit comments