From 3ce8344275fc056f3eb34514611bdeafe25d6909 Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Fri, 24 Mar 2023 15:21:31 +0100 Subject: [PATCH] Add default match for one subcluster --- pkg/archive/clusterConfig.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/archive/clusterConfig.go b/pkg/archive/clusterConfig.go index 925c630..cb0b502 100644 --- a/pkg/archive/clusterConfig.go +++ b/pkg/archive/clusterConfig.go @@ -53,7 +53,7 @@ func initClusterConfig() error { nodeLists[cluster.Name] = make(map[string]NodeList) for _, sc := range cluster.SubClusters { - if sc.Nodes == "" { + if sc.Nodes == "*" { continue }