diff --git a/cluster/cluster.go b/cluster/cluster.go index b1008ff7..1720cb9e 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -354,7 +354,7 @@ func (c *Cluster) SyncLabelsAndTaints(ctx context.Context, currentCluster *Clust if currentCluster != nil { cpToDelete := hosts.GetToDeleteHosts(currentCluster.ControlPlaneHosts, c.ControlPlaneHosts, c.InactiveHosts, false) if len(cpToDelete) == len(currentCluster.ControlPlaneHosts) { - log.Infof(ctx, "[sync] Cleaning left control plane nodes from reconcilation") + log.Infof(ctx, "[sync] Cleaning left control plane nodes from reconciliation") for _, toDeleteHost := range cpToDelete { if err := cleanControlNode(ctx, c, currentCluster, toDeleteHost); err != nil { return err diff --git a/main.go b/main.go index 64b05363..972e164a 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( "github.com/urfave/cli" ) -// VERSION gets overriden at build time using -X main.VERSION=$VERSION +// VERSION gets overridden at build time using -X main.VERSION=$VERSION var VERSION = "dev" var released = regexp.MustCompile(`^v[0-9]+\.[0-9]+\.[0-9]+$`) var proxyEnvVars = [3]string{"HTTP_PROXY", "HTTPS_PROXY", "NO_PROXY"}