From 5bff8be72e3737323bce04ac54313d4e6d61ee56 Mon Sep 17 00:00:00 2001 From: Gregory Kurtzer Date: Sun, 12 Sep 2021 14:42:08 -0700 Subject: [PATCH] Clustername bug not showing up in profiles. Not sure how this bug has existed for so long without being noticed! CRAZY! --- internal/pkg/node/constructors.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/pkg/node/constructors.go b/internal/pkg/node/constructors.go index 473c249d..7dd55277 100644 --- a/internal/pkg/node/constructors.go +++ b/internal/pkg/node/constructors.go @@ -184,6 +184,7 @@ func (config *nodeYaml) FindAllProfiles() ([]NodeInfo, error) { p.Id.Set(name) p.Comment.Set(profile.Comment) + p.ClusterName.Set(profile.ClusterName) p.ContainerName.Set(profile.ContainerName) p.Ipxe.Set(profile.Ipxe) p.Init.Set(profile.Init)