From d184198244fdadee1ce84b56c9453f1acdb58e1d Mon Sep 17 00:00:00 2001 From: Andrew Lavery Date: Thu, 19 Oct 2023 18:21:53 -0600 Subject: [PATCH] = not : --- pkg/helmvm/node_join.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/helmvm/node_join.go b/pkg/helmvm/node_join.go index 9ef7840a4e..ca14f4322e 100644 --- a/pkg/helmvm/node_join.go +++ b/pkg/helmvm/node_join.go @@ -329,10 +329,10 @@ func getRoleNodeLabels(ctx context.Context, client kubernetes.Interface, role st // one label will be the number of roles, and then deterministic label names will be used to store the role names func getRoleListLabels(roles []string) []string { toReturn := []string{} - toReturn = append(toReturn, fmt.Sprintf("%s:total-%d", types.EMBEDDED_CLUSTER_ROLE_LABEL, len(roles))) + toReturn = append(toReturn, fmt.Sprintf("%s=total-%d", types.EMBEDDED_CLUSTER_ROLE_LABEL, len(roles))) for idx, role := range roles { - toReturn = append(toReturn, fmt.Sprintf("%s-%d:%s", types.EMBEDDED_CLUSTER_ROLE_LABEL, idx, role)) + toReturn = append(toReturn, fmt.Sprintf("%s-%d=%s", types.EMBEDDED_CLUSTER_ROLE_LABEL, idx, role)) } return toReturn