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
1. Dependent resources are explicitly created and can be access later by reference.
305
-
2. Event sources are produced by the dependent resources, but needs to be explicitly registered in
306
-
this case by implementing
307
-
the [`EventSourceInitializer`](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/EventSourceInitializer.java)
308
-
interface.
309
-
3. The input html is validated, and error message is set in case it is invalid.
310
-
4. Reconciliation of dependent resources is called explicitly, but here the workflow
311
-
customization is fully in the hand of the developer.
312
-
5. An `Ingress` is created but only in case `exposed` flag set to true on custom resource. Tries to
313
-
delete it if not.
314
-
6. Status is set in a different way, this is just an alternative way to show, that the actual state
315
-
can be read using the reference. This could be written in a same way as in the managed example.
Note also the Workflows feature makes it possible to also support this conditional creation use
322
-
case in managed dependent resources.
230
+
You can see a commented example of how to do
231
+
so [here](https://github.com/operator-framework/java-operator-sdk/blob/main/sample-operators/webpage/src/main/java/io/javaoperatorsdk/operator/sample/WebPageStandaloneDependentsReconciler.java).
323
232
324
233
## Creating/Updating Kubernetes Resources
325
234
@@ -352,17 +261,17 @@ Since SSA is a complex feature, JOSDK implements a feature flag allowing users t
352
261
these implementations. See
353
262
in [ConfigurationService](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ConfigurationService.java#L332-L358).
354
263
355
-
It is, however, important to note that these implementations are default, generic
356
-
implementations that the framework can provide expected behavior out of the box. In many
357
-
situations, these will work just fine but it is also possible to provide matching algorithms
264
+
It is, however, important to note that these implementations are default, generic
265
+
implementations that the framework can provide expected behavior out of the box. In many
266
+
situations, these will work just fine but it is also possible to provide matching algorithms
358
267
optimized for specific use cases. This is easily done by simply overriding
359
-
the `match(...)`[method](https://github.com/java-operator-sdk/java-operator-sdk/blob/e16559fd41bbb8bef6ce9d1f47bffa212a941b09/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/KubernetesDependentResource.java#L156-L156).
268
+
the `match(...)`[method](https://github.com/java-operator-sdk/java-operator-sdk/blob/e16559fd41bbb8bef6ce9d1f47bffa212a941b09/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/KubernetesDependentResource.java#L156-L156).
360
269
361
-
It is also possible to bypass the matching logic altogether to simply rely on the server-side
270
+
It is also possible to bypass the matching logic altogether to simply rely on the server-side
362
271
apply mechanism if always sending potentially unchanged resources to the cluster is not an issue.
363
272
JOSDK's matching mechanism allows to spare some potentially useless calls to the Kubernetes API
364
-
server. To bypass the matching feature completely, simply override the `match` method to always
365
-
return `false`, thus telling JOSDK that the actual state never matches the desired one, making
273
+
server. To bypass the matching feature completely, simply override the `match` method to always
274
+
return `false`, thus telling JOSDK that the actual state never matches the desired one, making
366
275
it always update the resources using SSA.
367
276
368
277
WARNING: Older versions of Kubernetes before 1.25 would create an additional resource version for every SSA update
resource, since there could be multiple instances of that type which could possibly be used, each
302
+
associated with the same primary resource. In this situation, JOSDK automatically selects the appropriate secondary
303
+
resource matching the desired state associated with the primary resource. This makes sense because the desired
304
+
state computation already needs to be able to discriminate among multiple related secondary resources to tell JOSDK how
305
+
they should be reconciled.
306
+
307
+
There might be casees, though, where it might be problematic to call the `desired` method several times (for example, because it is costly to do so), it is always possible to override this automated discrimination using several means:
308
+
309
+
- Implement your own `getSecondaryResource` method on your `DependentResource` implementation from scratch.
310
+
- Override the `selectManagedSecondaryResource` method, if your `DependentResource` extends `AbstractDependentResource`.
311
+
This should be relatively simple to override this method to optimize the matching to your needs. You can see an
312
+
example of such an implementation in
313
+
the [`ExternalWithStateDependentResource`](https://github.com/operator-framework/java-operator-sdk/blob/6cd0f884a7c9b60c81bd2d52da54adbd64d6e118/operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/externalstate/ExternalWithStateDependentResource.java#L43-L49)
314
+
class.
315
+
- Override the `managedSecondaryResourceID` method, if your `DependentResource` extends `KubernetesDependentResource`,
316
+
where it's very often possible to easily determine the `ResourceID` of the secondary resource. This would probably be
317
+
the easiest solution if you're working with Kubernetes resources.
318
+
319
+
### Sharing an Event Source Between Dependent Resources
406
320
407
321
Dependent resources usually also provide event sources. When dealing with multiple dependents of
408
322
the same type, one needs to decide whether these dependent resources should track the same
@@ -418,10 +332,10 @@ would look as follows:
418
332
useEventSourceWithName = "configMapSource")
419
333
```
420
334
421
-
A sample is provided as an integration test both
422
-
for [managed](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/MultipleManagedDependentSameTypeIT.java)
for [managed](https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/MultipleManagedDependentNoDiscriminatorIT.java)
@@ -484,15 +398,18 @@ also be created, one per dependent resource.
484
398
See [integration test](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/ExternalStateBulkIT.java)
485
399
as a sample.
486
400
487
-
488
401
## GenericKubernetesResource based Dependent Resources
489
402
490
-
In rare circumstances resource handling where there is no class representation or just typeless handling might be needed.
For dependent resource this is supported by [GenericKubernetesDependentResource](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/GenericKubernetesDependentResource.java#L8-L8)
495
-
. See samples [here](https://github.com/java-operator-sdk/java-operator-sdk/tree/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/generickubernetesresource).
409
+
For dependent resource this is supported
410
+
by [GenericKubernetesDependentResource](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/GenericKubernetesDependentResource.java#L8-L8)
0 commit comments