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
I have a usecase, where I need to create, update and delete Resources, depending on multiple primary resources.
Here is a little example:
My primary custom resource is UserGroup. Let's say I have 2 of those:
From this I want to generate User custom resources. If a User in both the read-group and the write-group, he should get both permissions:
apiVersion: example
kind: User
metadata:
name: alice
spec:
permissions:
- "Read"
- "Write"
Changes like updates and deletion on the UserGroup should also trigger updates on the User
I wanted to avoid using the KubernetesClient directly because just specifying a simple desired state like with AbstractDependentResource::desired seems to be less complicated.
Is something like this possible in java-operator-sdk?