Skip to content

fix: Prefix ui-http port endpoints with http:// #368

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

Merged
merged 3 commits into from
Apr 10, 2025
Merged
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
1 change: 1 addition & 0 deletions rust/stackable-cockpit/src/platform/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 6 additions & 1 deletion rust/stackablectl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ([#368]).

## [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]).
Expand All @@ -15,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

Expand Down
Loading