Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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,11 +4,17 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Added

- BREAKING: Add `objectOverrides` field to `ListenerSpec` ([#1136]).

### Changed

- Revert and pin k8s-openapi to 0.26.0 ([#1135]).
- BREAKING: `ListenerSpec` now longer derives `Eq` ([#1136]).
Comment thread
sbernauer marked this conversation as resolved.
Outdated

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

## [0.101.2] - 2026-01-07

Expand Down
8 changes: 6 additions & 2 deletions crates/stackable-operator/src/crd/listener/listeners/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use stackable_versioned::versioned;

#[cfg(doc)]
use crate::builder::pod::volume::ListenerOperatorVolumeSourceBuilder;
use crate::crd::listener::core::v1alpha1 as core_v1alpha1;
use crate::{crd::listener::core::v1alpha1 as core_v1alpha1, deep_merger::ObjectOverrides};

mod v1alpha1_impl;

Expand All @@ -55,7 +55,7 @@ pub mod versioned {
namespaced
))]
#[derive(
CustomResource, Serialize, Deserialize, Default, Clone, Debug, JsonSchema, PartialEq, Eq,
CustomResource, Serialize, Deserialize, Default, Clone, Debug, JsonSchema, PartialEq,
)]
#[serde(rename_all = "camelCase")]
pub struct ListenerSpec {
Expand All @@ -72,6 +72,10 @@ pub mod versioned {
/// Whether incoming traffic should also be directed to Pods that are not `Ready`.
#[serde(default = "ListenerSpec::default_publish_not_ready_addresses")]
pub publish_not_ready_addresses: Option<bool>,

// Docs are provided by the ObjectOverrides struct
#[serde(default)]
pub object_overrides: ObjectOverrides,
}

/// Informs users about Listeners that are bound by a given Pod.
Expand Down
Loading