|
9 | 9 | import io.javaoperatorsdk.operator.api.config.dependent.ConfigurationConverter;
|
10 | 10 | import io.javaoperatorsdk.operator.api.config.informer.InformerConfiguration;
|
11 | 11 | import io.javaoperatorsdk.operator.api.reconciler.Constants;
|
| 12 | +import io.javaoperatorsdk.operator.processing.GroupVersionKind; |
12 | 13 | import io.javaoperatorsdk.operator.processing.event.source.PrimaryToSecondaryMapper;
|
13 | 14 | import io.javaoperatorsdk.operator.processing.event.source.SecondaryToPrimaryMapper;
|
14 | 15 | import io.javaoperatorsdk.operator.processing.event.source.filter.GenericFilter;
|
@@ -47,15 +48,28 @@ public KubernetesDependentResourceConfig<R> configFrom(KubernetesDependent confi
|
47 | 48 |
|
48 | 49 | }
|
49 | 50 |
|
50 |
| - @SuppressWarnings("unchecked") |
| 51 | + @SuppressWarnings({"unchecked", "rawtypes"}) |
51 | 52 | private InformerConfiguration<R> createInformerConfiguration(KubernetesDependent configAnnotation,
|
52 | 53 | ControllerConfiguration<?> controllerConfig,
|
53 | 54 | Class<KubernetesDependentResource<R, P>> originatingClass) {
|
54 | 55 | try {
|
55 | 56 | var dependentInstance = originatingClass.getConstructor().newInstance();
|
56 | 57 | var resourceType = dependentInstance.resourceType();
|
57 |
| - var informerConfig = |
58 |
| - InformerConfiguration.from(resourceType, controllerConfig.getResourceClass()); |
| 58 | + |
| 59 | + InformerConfiguration.InformerConfigurationBuilder informerConfig; |
| 60 | + if (resourceType.isAssignableFrom(GenericKubernetesDependentResource.class)) { |
| 61 | + if (configAnnotation.informerConfig() == null || |
| 62 | + Constants.NO_VALUE_SET.equals(configAnnotation.informerConfig().groupVersionKind())) { |
| 63 | + throw new IllegalStateException( |
| 64 | + "Set groupVersionKind should be set when using GenericKubernetesResource"); |
| 65 | + } |
| 66 | + informerConfig = InformerConfiguration.from( |
| 67 | + GroupVersionKind.fromString(configAnnotation.informerConfig().groupVersionKind()), |
| 68 | + controllerConfig.getResourceClass()); |
| 69 | + } else { |
| 70 | + informerConfig = |
| 71 | + InformerConfiguration.from(resourceType, controllerConfig.getResourceClass()); |
| 72 | + } |
59 | 73 |
|
60 | 74 | informerConfig.withSecondaryToPrimaryMapper(
|
61 | 75 | dependentInstance.getSecondaryToPrimaryMapper().orElse(null));
|
@@ -113,6 +127,7 @@ private InformerConfiguration<R> createInformerConfiguration(KubernetesDependent
|
113 | 127 | if (secondaryToPrimaryMapper != null) {
|
114 | 128 | informerConfig.withSecondaryToPrimaryMapper(secondaryToPrimaryMapper);
|
115 | 129 | }
|
| 130 | + |
116 | 131 | }
|
117 | 132 |
|
118 | 133 | return informerConfig.build();
|
|
0 commit comments