Skip to content

Commit 3604c1e

Browse files
authored
fix(stackable-cockpit/stacklet): Use heritage label for looking up minio (#364)
* fix(stackable-cockpit/stacklet): Use heritage label for looking up minio Fixes #363 * chore: Update changelog
1 parent c8f92b6 commit 3604c1e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

rust/stackable-cockpit/src/platform/stacklet/minio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub(super) async fn list(client: &Client, namespace: Option<&str>) -> Result<Vec
1313
let mut stacklets = Vec::new();
1414

1515
// The helm-chart uses `app` instead of `app.kubernetes.io/app`, so we can't use `ListParams::from_product` here
16-
let params = ListParams::default().labels("app=minio,app.kubernetes.io/managed-by=Helm");
16+
let params = ListParams::default().labels("app=minio,heritage=Helm");
1717
let services = client
1818
.list_services(namespace, &params)
1919
.await

rust/stackablectl/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ All notable changes to this project will be documented in this file.
77
### Fixes
88

99
- Use `rustls-native-certs` so that `stackablectl` can be used in environments with internal PKI ([#351]).
10+
- Use `heritage` label when looking up the `minio-console` stacklet ([#364]).
1011

1112
[#351]: https://github.com/stackabletech/stackable-cockpit/pull/351
13+
[#364]: https://github.com/stackabletech/stackable-cockpit/pull/364
1214

1315
## [24.11.3] - 2025-01-27
1416

0 commit comments

Comments
 (0)