From 8466780b58911a9f01fd2ac58168b2b7564acf39 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Mon, 14 Oct 2024 16:51:10 +0200 Subject: [PATCH 1/2] fix: Propagate serviceAnnotations to the created Services --- CHANGELOG.md | 1 + rust/operator-binary/src/listener_controller.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index df9415cf..87e55b50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file. - Listener.status.addresses is now de-duplicated ([#231]). - Listener controller now listens for ListenerClass updates ([#231]). +- Propagate `ListenerClass.spec.serviceAnnotations` to the created Services ([#XXX]). [#231]: https://github.com/stackabletech/listener-operator/pull/231 diff --git a/rust/operator-binary/src/listener_controller.rs b/rust/operator-binary/src/listener_controller.rs index 43b36398..22e565fc 100644 --- a/rust/operator-binary/src/listener_controller.rs +++ b/rust/operator-binary/src/listener_controller.rs @@ -237,6 +237,7 @@ pub async fn reconcile(listener: Arc, ctx: Arc) -> Result Date: Mon, 14 Oct 2024 16:53:35 +0200 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87e55b50..f3f92a66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,10 @@ All notable changes to this project will be documented in this file. - Listener.status.addresses is now de-duplicated ([#231]). - Listener controller now listens for ListenerClass updates ([#231]). -- Propagate `ListenerClass.spec.serviceAnnotations` to the created Services ([#XXX]). +- Propagate `ListenerClass.spec.serviceAnnotations` to the created Services ([#234]). [#231]: https://github.com/stackabletech/listener-operator/pull/231 +[#234]: https://github.com/stackabletech/listener-operator/pull/234 ## [24.7.0] - 2024-07-24