You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new naming algorithm makes it impossible to use the default name for
to identify a controller in application.yaml files because FQNs are
interpreted as composite paths instead of single names. This makes
things more cumbersome, imo.
Copy file name to clipboardExpand all lines: operator-framework-spring-boot-starter/src/test/java/io/javaoperatorsdk/operator/springboot/starter/AutoConfigurationTest.java
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -38,10 +38,7 @@ public void loadsKubernetesClientPropertiesProperly() {
Copy file name to clipboardExpand all lines: operator-framework-spring-boot-starter/src/test/java/io/javaoperatorsdk/operator/springboot/starter/TestController.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
importorg.springframework.stereotype.Component;
10
10
11
11
@Component
12
-
@Controller(crdName = "name")
12
+
@Controller(crdName = "name", name = "name_must_be_changed")
0 commit comments