From c6af2dac66cbbcd7ad703842b75301181d7a6fa5 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Wed, 9 Apr 2025 09:58:45 +0200 Subject: [PATCH 1/3] Prefix `ui-http` port endpoints with `http://`, --- rust/stackable-cockpit/src/platform/service.rs | 1 + rust/stackablectl/CHANGELOG.md | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/rust/stackable-cockpit/src/platform/service.rs b/rust/stackable-cockpit/src/platform/service.rs index 4586650b..8d84c1e2 100644 --- a/rust/stackable-cockpit/src/platform/service.rs +++ b/rust/stackable-cockpit/src/platform/service.rs @@ -311,6 +311,7 @@ fn endpoint_url(endpoint_host: &str, endpoint_port: i32, port_name: &str) -> Str // As we still support older operator versions we need to also include the "old" way of naming if port_name == "http" || port_name.starts_with("http-") + || port_name == "ui-http" || port_name == "ui" || port_name == "airflow" || port_name == "superset" diff --git a/rust/stackablectl/CHANGELOG.md b/rust/stackablectl/CHANGELOG.md index 8993683c..da32ed41 100644 --- a/rust/stackablectl/CHANGELOG.md +++ b/rust/stackablectl/CHANGELOG.md @@ -4,9 +4,13 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### Fixed + +- Prefix `ui-http` Port endpoints with `http://`, as e.g. used by hbase-operator ([#XXX]). + ## [25.3.0] - 2025-03-27 -### Fixes +### Fixed - Use `rustls-native-certs` so that `stackablectl` can be used in environments with internal PKI ([#351]). - Use `heritage` label when looking up the `minio-console` stacklet ([#364]). From b63e21b0c20ed56a10b377d23b3ff5698018432f Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Wed, 9 Apr 2025 09:59:11 +0200 Subject: [PATCH 2/3] Prefix ui-http port endpoints with http:// --- rust/stackablectl/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/stackablectl/CHANGELOG.md b/rust/stackablectl/CHANGELOG.md index da32ed41..291aa505 100644 --- a/rust/stackablectl/CHANGELOG.md +++ b/rust/stackablectl/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. ### Fixed -- Prefix `ui-http` Port endpoints with `http://`, as e.g. used by hbase-operator ([#XXX]). +- Prefix `ui-http` port endpoints with `http://`, as e.g. used by hbase-operator ([#XXX]). ## [25.3.0] - 2025-03-27 From 0efae48e332ec1614065b161878fab7809a6065d Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Wed, 9 Apr 2025 10:00:14 +0200 Subject: [PATCH 3/3] changelog --- rust/stackablectl/CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rust/stackablectl/CHANGELOG.md b/rust/stackablectl/CHANGELOG.md index 291aa505..389d68ab 100644 --- a/rust/stackablectl/CHANGELOG.md +++ b/rust/stackablectl/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. ### Fixed -- Prefix `ui-http` port endpoints with `http://`, as e.g. used by hbase-operator ([#XXX]). +- Prefix `ui-http` port endpoints with `http://`, as e.g. used by hbase-operator ([#368]). ## [25.3.0] - 2025-03-27 @@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file. [#351]: https://github.com/stackabletech/stackable-cockpit/pull/351 [#364]: https://github.com/stackabletech/stackable-cockpit/pull/364 [#365]: https://github.com/stackabletech/stackable-cockpit/pull/365 +[#368]: https://github.com/stackabletech/stackable-cockpit/pull/368 ## [24.11.3] - 2025-01-27