mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-08 14:11:13 +02:00
Use new version of go-kubernetes, and move the `kube-proxy` DaemonSet update to follow common logic of bootstrap manifests update. This fixes a confusing behavior when after `k8s-upgrade` the version of `kube-proxy` is not updated in the machine config. See https://github.com/siderolabs/go-kubernetes/pull/3 Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package kubernetes
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/siderolabs/go-kubernetes/kubernetes/upgrade"
|
|
)
|
|
|
|
const (
|
|
namespace = "kube-system"
|
|
|
|
kubeAPIServer = "kube-apiserver"
|
|
kubeControllerManager = "kube-controller-manager"
|
|
kubeScheduler = "kube-scheduler"
|
|
)
|
|
|
|
// UpgradeOptions represents Kubernetes control plane upgrade settings.
|
|
type UpgradeOptions struct {
|
|
Path *upgrade.Path
|
|
|
|
ControlPlaneEndpoint string
|
|
LogOutput io.Writer
|
|
UpgradeKubelet bool
|
|
DryRun bool
|
|
|
|
controlPlaneNodes []string
|
|
workerNodes []string
|
|
}
|
|
|
|
// Log writes the line to logger or to stdout if no logger was provided.
|
|
func (options *UpgradeOptions) Log(line string, args ...interface{}) {
|
|
if options.LogOutput != nil {
|
|
options.LogOutput.Write([]byte(fmt.Sprintf(line, args...))) //nolint:errcheck
|
|
|
|
return
|
|
}
|
|
|
|
fmt.Printf(line+"\n", args...)
|
|
}
|