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() }