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 d40c64e commit 235da32Copy full SHA for 235da32
operator-framework/src/main/java/io/javaoperatorsdk/operator/config/runtime/AnnotationConfiguration.java
@@ -50,6 +50,11 @@ public Set<String> getNamespaces() {
50
return Set.of(annotation.map(Controller::namespaces).orElse(new String[] {}));
51
}
52
53
+ @Override
54
+ public String getLabelSelector() {
55
+ return annotation.map(Controller::labelSelector).orElse("");
56
+ }
57
+
58
@Override
59
public ConfigurationService getConfigurationService() {
60
return service;
0 commit comments