-
Notifications
You must be signed in to change notification settings - Fork 24
chore: josdk version to 4.2.7 #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -121,6 +125,45 @@ public Operator operator( | |||
return operator; | |||
} | |||
|
|||
@SuppressWarnings("rawtypes") | |||
private void setControllerOverrides(ControllerConfigurationOverrider<?> o, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thinking more about it, the starter should either reuse an implementation of ControllerConfiguration
or provide its own instead of relying on overriding.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why? I think this is much more elegant, basically that is what you want to do, override the defaults by providing properties.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally starter is just a wrapper, we should avoid having custom implementations if not really needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks more elegant but is wrong as the resource type shouldn't be changed from what the Reconciler
implementation defines.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can emit resource type, and add it if somebody asks for it. And see the reasons.
No description provided.