From 6dd448f7ce9cda4d777e6e6d45d06d3bda94c49d Mon Sep 17 00:00:00 2001 From: "Meggle (Sebastian Bathke)" Date: Wed, 18 Oct 2023 15:25:45 +0200 Subject: [PATCH] fix: use new app label for zeebe gateway saas --- go-chaos/internal/labels.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-chaos/internal/labels.go b/go-chaos/internal/labels.go index 561afc53b..10809a868 100644 --- a/go-chaos/internal/labels.go +++ b/go-chaos/internal/labels.go @@ -62,7 +62,7 @@ func getSaasGatewayLabels() string { // For backwards compatability the brokers kept the gateway labels, for a statefulset the labels are not modifiable // To still be able to distinguish the standalone gateway with the broker, the gateway got a new label. labelSelector := metav1.LabelSelector{ - MatchLabels: map[string]string{"app.kubernetes.io/app": "zeebe", "app.kubernetes.io/component": "standalone-gateway"}, + MatchLabels: map[string]string{"app.kubernetes.io/app": "zeebe-gateway", "app.kubernetes.io/component": "standalone-gateway"}, } return labels.Set(labelSelector.MatchLabels).String() }