Skip to content

Commit c9de6e0

Browse files
committed
fix(stackable-cockpit/stacklet): Use heritage label for looking up minio
Fixes #363
1 parent c8f92b6 commit c9de6e0

File tree

1 file changed

+1
-1
lines changed
  • rust/stackable-cockpit/src/platform/stacklet

1 file changed

+1
-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

0 commit comments

Comments
 (0)