Skip to content
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

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions crates/stackable-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Added

- Added `ListenerClass.spec.loadBalancerClass` field ([#986]).

[#986]: https://github.com/stackabletech/operator-rs/pull/986

## [0.87.4] - 2025-03-17

## [0.87.3] - 2025-03-14
Expand Down
19 changes: 19 additions & 0 deletions crates/stackable-operator/src/commons/listener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,21 @@ use crate::builder::pod::volume::ListenerOperatorVolumeSourceBuilder;
pub struct ListenerClassSpec {
pub service_type: ServiceType,

/// Configures whether a LoadBalancer service should also allocate node ports (like NodePort).
///
/// Ignored unless serviceType is LoadBalancer.
// TODO: v1alpha2: Move into ServiceType::LoadBalancer
#[serde(default = "ListenerClassSpec::default_load_balancer_allocate_node_ports")]
pub load_balancer_allocate_node_ports: bool,

/// Configures a custom Service loadBalancerClass, which can be used to access secondary
/// load balancer controllers that are installed in the cluster, or to provision
/// custom addresses manually.
///
/// Ignored unless serviceType is LoadBalancer.
// TODO: v1alpha2: Move into ServiceType::LoadBalancer
pub load_balancer_class: Option<String>,

/// Annotations that should be added to the Service object.
#[serde(default)]
pub service_annotations: BTreeMap<String, String>,
Expand Down Expand Up @@ -82,6 +97,10 @@ impl ListenerClassSpec {
PreferredAddressType::HostnameConservative
}

const fn default_load_balancer_allocate_node_ports() -> bool {
true
}

/// Resolves [`Self::preferred_address_type`]'s "smart" modes depending on the rest of `self`.
pub fn resolve_preferred_address_type(&self) -> AddressType {
self.preferred_address_type.resolve(self)
Expand Down