14
14
import io .fabric8 .kubernetes .client .informers .ResourceEventHandler ;
15
15
import io .javaoperatorsdk .operator .api .config .informer .InformerEventSourceConfiguration ;
16
16
import io .javaoperatorsdk .operator .api .reconciler .EventSourceContext ;
17
+ import io .javaoperatorsdk .operator .processing .dependent .kubernetes .SSABasedGenericKubernetesResourceMatcher ;
17
18
import io .javaoperatorsdk .operator .processing .event .Event ;
18
19
import io .javaoperatorsdk .operator .processing .event .EventHandler ;
19
20
import io .javaoperatorsdk .operator .processing .event .ResourceID ;
@@ -68,6 +69,8 @@ public class InformerEventSource<R extends HasMetadata, P extends HasMetadata>
68
69
private final PrimaryToSecondaryIndex <R > primaryToSecondaryIndex ;
69
70
private final PrimaryToSecondaryMapper <P > primaryToSecondaryMapper ;
70
71
private final String id = UUID .randomUUID ().toString ();
72
+ private final KubernetesClient client ;
73
+ private final String fieldManager ;
71
74
72
75
public InformerEventSource (
73
76
InformerEventSourceConfiguration <R > configuration , EventSourceContext <P > context ) {
@@ -77,18 +80,20 @@ public InformerEventSource(
77
80
context
78
81
.getControllerConfiguration ()
79
82
.getConfigurationService ()
80
- .parseResourceVersionsForEventFilteringAndCaching ());
83
+ .parseResourceVersionsForEventFilteringAndCaching (),
84
+ context .getControllerConfiguration ().fieldManager ());
81
85
}
82
86
83
87
InformerEventSource (InformerEventSourceConfiguration <R > configuration , KubernetesClient client ) {
84
- this (configuration , client , false );
88
+ this (configuration , client , false , "manager" );
85
89
}
86
90
87
91
@ SuppressWarnings ({"unchecked" , "rawtypes" })
88
92
private InformerEventSource (
89
93
InformerEventSourceConfiguration <R > configuration ,
90
94
KubernetesClient client ,
91
- boolean parseResourceVersions ) {
95
+ boolean parseResourceVersions ,
96
+ String fieldManager ) {
92
97
super (
93
98
configuration .name (),
94
99
configuration
@@ -112,6 +117,8 @@ private InformerEventSource(
112
117
onUpdateFilter = informerConfig .getOnUpdateFilter ();
113
118
onDeleteFilter = informerConfig .getOnDeleteFilter ();
114
119
genericFilter = informerConfig .getGenericFilter ();
120
+ this .client = client ;
121
+ this .fieldManager = fieldManager ;
115
122
}
116
123
117
124
@ Override
@@ -215,10 +222,22 @@ private boolean isEventKnownFromAnnotation(R newObject, R oldObject) {
215
222
if (id .equals (parts [0 ])) {
216
223
if (oldObject == null && parts .length == 1 ) {
217
224
known = true ;
218
- } else if (oldObject != null
219
- && parts .length == 2
220
- && oldObject .getMetadata ().getResourceVersion ().equals (parts [1 ])) {
221
- known = true ;
225
+ } else if (oldObject != null && parts .length == 2 ) {
226
+ if (oldObject .getMetadata ().getResourceVersion ().equals (parts [1 ])) {
227
+ known = true ;
228
+ } else {
229
+ // if the resource version doesn't match, there's a chance that it's due
230
+ // to a change that is not meaningful, but causes the matcher logic between
231
+ // desired and newObject to see a change.
232
+ // TODO: this likely should be conditional on useSSA, not just the presence of the
233
+ // field manager
234
+ var ssaMatcher = SSABasedGenericKubernetesResourceMatcher .getInstance ();
235
+ if (ssaMatcher .checkIfFieldManagerExists (newObject , fieldManager ).isPresent ()) {
236
+ known = ssaMatcher .matches (oldObject , newObject , fieldManager , client , true );
237
+ } else {
238
+ // do we even need to worry about this case
239
+ }
240
+ }
222
241
}
223
242
}
224
243
}
0 commit comments