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 9a00689 commit 92b5e4eCopy full SHA for 92b5e4e
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ControllerConfiguration.java
@@ -21,6 +21,14 @@ default String getFinalizer() {
21
return ControllerUtils.getDefaultFinalizerName(getCRDName());
22
}
23
24
+ /**
25
+ * Retrieves the label selector that is used to filter which custom resources are actually watched
26
+ * by the associated controller. See
27
+ * https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more details on
28
+ * syntax.
29
+ *
30
+ * @return the label selector filtering watched custom resources
31
+ */
32
default String getLabelSelector() {
33
return null;
34
0 commit comments