From 3d735a22a6dcb934c8a62cf6a3d6ef003134cccb Mon Sep 17 00:00:00 2001 From: Kimmo Lehto Date: Fri, 8 Nov 2024 08:41:22 +0200 Subject: [PATCH] Restore k0s spec.api.sans updating that was removed in #772 (#783) * Restore sans manipulation that was removed in #772 Signed-off-by: Kimmo Lehto * Make sans global Signed-off-by: Kimmo Lehto --------- Signed-off-by: Kimmo Lehto --- phase/configure_k0s.go | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/phase/configure_k0s.go b/phase/configure_k0s.go index 8fc86086..ac198b71 100644 --- a/phase/configure_k0s.go +++ b/phase/configure_k0s.go @@ -5,6 +5,7 @@ import ( "context" "fmt" gopath "path" + "slices" "time" "github.com/k0sproject/dig" @@ -74,6 +75,42 @@ func (p *ConfigureK0s) Prepare(config *v1beta1.Cluster) error { } } + // convert sans from unmarshaled config into []string + var sans []string + oldsans := p.newBaseConfig.Dig("spec", "api", "sans") + switch oldsans := oldsans.(type) { + case []interface{}: + for _, v := range oldsans { + if s, ok := v.(string); ok { + sans = append(sans, s) + } + } + log.Tracef("converted sans from %T to []string", oldsans) + case []string: + sans = append(sans, oldsans...) + log.Tracef("sans was readily %T", oldsans) + default: + // do nothing - base k0s config does not contain any existing SANs + } + + // populate SANs with all controller addresses + for i, c := range p.Config.Spec.Hosts.Controllers() { + if c.Reset { + continue + } + if !slices.Contains(sans, c.Address()) { + sans = append(sans, c.Address()) + log.Debugf("added controller %d address %s to spec.api.sans", i+1, c.Address()) + } + if c.PrivateAddress != "" && !slices.Contains(sans, c.PrivateAddress) { + sans = append(sans, c.PrivateAddress) + log.Debugf("added controller %d private address %s to spec.api.sans", i+1, c.PrivateAddress) + } + } + + // assign populated sans to the base config + p.newBaseConfig.DigMapping("spec", "api")["sans"] = sans + for _, h := range p.Config.Spec.Hosts.Controllers() { if h.Reset { continue @@ -286,6 +323,7 @@ func (p *ConfigureK0s) configFor(h *cluster.Host) (string, error) { } var addr string + if h.PrivateAddress != "" { addr = h.PrivateAddress } else {