-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add loadBalancerClass field to ListenerClass.spec #986
base: main
Are you sure you want to change the base?
Conversation
Moving the CRD changes into RFC |
The suggestion looks okay for me. Nevertheless, I would like to present my thoughts that lead me to another suggestion:
The ListenerClass requires Service properties. Why not just add an according structure where the properties can be set in exactly the same way, as they are set in Services: spec:
serviceProperties:
type: LoadBalancer:
loadBalancerClass: manual
allocateLoadBalancerNodePorts: false If we do not want to introduce a breaking change, we could just keep the field spec:
serviceType: LoadBalancer
serviceProperties:
loadBalancerClass: manual
allocateLoadBalancerNodePorts: false |
Yeah. Not super pretty, but also consistent with
Looking back at v1.0.0 (https://github.com/kubernetes/kubernetes/blob/v1.0.0/api/swagger-spec/v1.json#L13468-L13499), they seem to have made the same mistake as us: made it a string enum before they had any per-type options, and then they were unable to change it since it was already a stable API. They also do some weird pseudo-enumisms (For example: "This field will be wiped when a service is updated to a non 'LoadBalancer' type." for
In retrospect, I think this might've been a mistake. Creating a backing Service is one way to implement a Listener, but it's not really core to the API contract at all (for example, I could see future ListenerClass types that use Ingress or Gateway instead, or which bypass K8s networking entirely). It's a tricky balance between letting people reuse existing K8s knowledge and owning our own API that we can adapt to our own needs.
They are parameters for instantiating that service type, and is similar to how rich enums are handled elsewhere (
Mentally, I read
My response to this is similar to the "prefix everything with If you want the prefix for "anything that currently relates to Services at all" then the prefix applies to, well, the whole CRD and we gain pretty much nothing. If you want the prefix for "things that are passed directly through to the Service" then I'm hesitant to apply it to anything because I think we should own the API, and what it means. The exception would be in defining some sort of generic |
Description
See stackabletech/listener-operator#285, part of stackabletech/listener-operator#288
This PR adds a two new fields to ListenerClass:
Which are mapped to
Service.spec.{loadBalancerClass,allocateLoadBalancerNodePorts}
, respectively. Currently these are ignored unlessserviceType: LoadBalancer
; in v1alpha2,serviceType
should be turned into a rich enum instead, and these fields be moved into it, like so:Definition of Done Checklist
Author
Reviewer
Acceptance