Class RunTimeControllerConfiguration
- java.lang.Object
-
- io.quarkiverse.operatorsdk.runtime.RunTimeControllerConfiguration
-
public class RunTimeControllerConfiguration extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Optional<String>finalizerThe optional name of the finalizer for the controller.Optional<List<String>>namespacesAn optional list of comma-separated namespace names the controller should watch.ExternalRetryConfigurationretryThe optional controller retry configurationOptional<String>selectorAn optional list of comma-separated label selectors that Custom Resources must match to trigger the controller.
-
Constructor Summary
Constructors Constructor Description RunTimeControllerConfiguration()
-
-
-
Field Detail
-
namespaces
@ConfigItem public Optional<List<String>> namespaces
An optional list of comma-separated namespace names the controller should watch. If this property is left empty then the controller will watch all namespaces.
-
finalizer
@ConfigItem public Optional<String> finalizer
The optional name of the finalizer for the controller. If none is provided, one will be automatically generated.
-
retry
@ConfigItem public ExternalRetryConfiguration retry
The optional controller retry configuration
-
-