
When doing the very first upgrade from a cluster that contains the source of truth in the ClusterStatus struct, the new kubeadm logic will try to retrieve this information from annotations. This changeset adds to both etcd and apiserver endpoint retrieval the special case in which they won't retry if we are in such cases. The logic will retry if we find any unknown error, but will not retry in the following cases: - etcd annotations do not contain etcd endpoints, but the overall list of etcd pods is greater than 0. This means that we listed at least one etcd pod, but they are missing the annotation. - API server annotation is not found on the api server pod for a given node name, but no errors aside from that one were found. This means that the API server pod is present, but is missing the annotation. In both cases there is no point in retrying, and so, this speeds up the upgrade path when coming from a previous existing cluster.
322 lines
14 KiB
Go
322 lines
14 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package config
|
|
|
|
import (
|
|
"context"
|
|
"crypto/x509"
|
|
"fmt"
|
|
"io"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
errorsutil "k8s.io/apimachinery/pkg/util/errors"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
"k8s.io/client-go/tools/clientcmd"
|
|
certutil "k8s.io/client-go/util/cert"
|
|
kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
|
|
kubeadmscheme "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/scheme"
|
|
"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
|
|
"k8s.io/kubernetes/cmd/kubeadm/app/constants"
|
|
"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
|
|
)
|
|
|
|
// unretriableError is an error used temporarily while we are migrating from the
|
|
// ClusterStatus struct to an annotation Pod based information. When performing
|
|
// the upgrade of all control plane nodes with `kubeadm upgrade apply` and
|
|
// `kubeadm upgrade node` we don't want to retry as if we were hitting connectivity
|
|
// issues when the pod annotation is missing on the API server pods. This error will
|
|
// be used in such scenario, for failing fast, and falling back to the ClusterStatus
|
|
// retrieval in those cases.
|
|
type unretriableError struct {
|
|
err error
|
|
}
|
|
|
|
func newUnretriableError(err error) *unretriableError {
|
|
return &unretriableError{err: err}
|
|
}
|
|
|
|
func (ue *unretriableError) Error() string {
|
|
return fmt.Sprintf("unretriable error: %s", ue.err.Error())
|
|
}
|
|
|
|
// FetchInitConfigurationFromCluster fetches configuration from a ConfigMap in the cluster
|
|
func FetchInitConfigurationFromCluster(client clientset.Interface, w io.Writer, logPrefix string, newControlPlane bool) (*kubeadmapi.InitConfiguration, error) {
|
|
fmt.Fprintf(w, "[%s] Reading configuration from the cluster...\n", logPrefix)
|
|
fmt.Fprintf(w, "[%s] FYI: You can look at this config file with 'kubectl -n %s get cm %s -oyaml'\n", logPrefix, metav1.NamespaceSystem, constants.KubeadmConfigConfigMap)
|
|
|
|
// Fetch the actual config from cluster
|
|
cfg, err := getInitConfigurationFromCluster(constants.KubernetesDir, client, newControlPlane)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Apply dynamic defaults
|
|
if err := SetInitDynamicDefaults(cfg); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return cfg, nil
|
|
}
|
|
|
|
// getInitConfigurationFromCluster is separate only for testing purposes, don't call it directly, use FetchInitConfigurationFromCluster instead
|
|
func getInitConfigurationFromCluster(kubeconfigDir string, client clientset.Interface, newControlPlane bool) (*kubeadmapi.InitConfiguration, error) {
|
|
// Also, the config map really should be KubeadmConfigConfigMap...
|
|
configMap, err := apiclient.GetConfigMapWithRetry(client, metav1.NamespaceSystem, constants.KubeadmConfigConfigMap)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get config map")
|
|
}
|
|
|
|
// InitConfiguration is composed with data from different places
|
|
initcfg := &kubeadmapi.InitConfiguration{}
|
|
|
|
// gets ClusterConfiguration from kubeadm-config
|
|
clusterConfigurationData, ok := configMap.Data[constants.ClusterConfigurationConfigMapKey]
|
|
if !ok {
|
|
return nil, errors.Errorf("unexpected error when reading kubeadm-config ConfigMap: %s key value pair missing", constants.ClusterConfigurationConfigMapKey)
|
|
}
|
|
if err := runtime.DecodeInto(kubeadmscheme.Codecs.UniversalDecoder(), []byte(clusterConfigurationData), &initcfg.ClusterConfiguration); err != nil {
|
|
return nil, errors.Wrap(err, "failed to decode cluster configuration data")
|
|
}
|
|
|
|
// gets the component configs from the corresponding config maps
|
|
if err := componentconfigs.FetchFromCluster(&initcfg.ClusterConfiguration, client); err != nil {
|
|
return nil, errors.Wrap(err, "failed to get component configs")
|
|
}
|
|
|
|
// if this isn't a new controlplane instance (e.g. in case of kubeadm upgrades)
|
|
// get nodes specific information as well
|
|
if !newControlPlane {
|
|
// gets the nodeRegistration for the current from the node object
|
|
if err := getNodeRegistration(kubeconfigDir, client, &initcfg.NodeRegistration); err != nil {
|
|
return nil, errors.Wrap(err, "failed to get node registration")
|
|
}
|
|
// gets the APIEndpoint for the current node
|
|
if err := getAPIEndpoint(client, initcfg.NodeRegistration.Name, &initcfg.LocalAPIEndpoint); err != nil {
|
|
return nil, errors.Wrap(err, "failed to getAPIEndpoint")
|
|
}
|
|
} else {
|
|
// In the case where newControlPlane is true we don't go through getNodeRegistration() and initcfg.NodeRegistration.CRISocket is empty.
|
|
// This forces DetectCRISocket() to be called later on, and if there is more than one CRI installed on the system, it will error out,
|
|
// while asking for the user to provide an override for the CRI socket. Even if the user provides an override, the call to
|
|
// DetectCRISocket() can happen too early and thus ignore it (while still erroring out).
|
|
// However, if newControlPlane == true, initcfg.NodeRegistration is not used at all and it's overwritten later on.
|
|
// Thus it's necessary to supply some default value, that will avoid the call to DetectCRISocket() and as
|
|
// initcfg.NodeRegistration is discarded, setting whatever value here is harmless.
|
|
initcfg.NodeRegistration.CRISocket = constants.DefaultDockerCRISocket
|
|
}
|
|
return initcfg, nil
|
|
}
|
|
|
|
// getNodeRegistration returns the nodeRegistration for the current node
|
|
func getNodeRegistration(kubeconfigDir string, client clientset.Interface, nodeRegistration *kubeadmapi.NodeRegistrationOptions) error {
|
|
// gets the name of the current node
|
|
nodeName, err := getNodeNameFromKubeletConfig(kubeconfigDir)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to get node name from kubelet config")
|
|
}
|
|
|
|
// gets the corresponding node and retrieves attributes stored there.
|
|
node, err := client.CoreV1().Nodes().Get(context.TODO(), nodeName, metav1.GetOptions{})
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to get corresponding node")
|
|
}
|
|
|
|
criSocket, ok := node.ObjectMeta.Annotations[constants.AnnotationKubeadmCRISocket]
|
|
if !ok {
|
|
return errors.Errorf("node %s doesn't have %s annotation", nodeName, constants.AnnotationKubeadmCRISocket)
|
|
}
|
|
|
|
// returns the nodeRegistration attributes
|
|
nodeRegistration.Name = nodeName
|
|
nodeRegistration.CRISocket = criSocket
|
|
nodeRegistration.Taints = node.Spec.Taints
|
|
// NB. currently nodeRegistration.KubeletExtraArgs isn't stored at node level but only in the kubeadm-flags.env
|
|
// that isn't modified during upgrades
|
|
// in future we might reconsider this thus enabling changes to the kubeadm-flags.env during upgrades as well
|
|
return nil
|
|
}
|
|
|
|
// getNodeNameFromKubeletConfig gets the node name from a kubelet config file
|
|
// TODO: in future we want to switch to a more canonical way for doing this e.g. by having this
|
|
// information in the local kubelet config.yaml
|
|
func getNodeNameFromKubeletConfig(kubeconfigDir string) (string, error) {
|
|
// loads the kubelet.conf file
|
|
fileName := filepath.Join(kubeconfigDir, constants.KubeletKubeConfigFileName)
|
|
config, err := clientcmd.LoadFromFile(fileName)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// gets the info about the current user
|
|
currentContext, exists := config.Contexts[config.CurrentContext]
|
|
if !exists {
|
|
return "", errors.Errorf("invalid kubeconfig file %s: missing context %s", fileName, config.CurrentContext)
|
|
}
|
|
authInfo, exists := config.AuthInfos[currentContext.AuthInfo]
|
|
if !exists {
|
|
return "", errors.Errorf("invalid kubeconfig file %s: missing AuthInfo %s", fileName, currentContext.AuthInfo)
|
|
}
|
|
|
|
// gets the X509 certificate with current user credentials
|
|
var certs []*x509.Certificate
|
|
if len(authInfo.ClientCertificateData) > 0 {
|
|
// if the config file uses an embedded x509 certificate (e.g. kubelet.conf created by kubeadm), parse it
|
|
if certs, err = certutil.ParseCertsPEM(authInfo.ClientCertificateData); err != nil {
|
|
return "", err
|
|
}
|
|
} else if len(authInfo.ClientCertificate) > 0 {
|
|
// if the config file links an external x509 certificate (e.g. kubelet.conf created by TLS bootstrap), load it
|
|
if certs, err = certutil.CertsFromFile(authInfo.ClientCertificate); err != nil {
|
|
return "", err
|
|
}
|
|
} else {
|
|
return "", errors.Errorf("invalid kubeconfig file %s. x509 certificate expected", fileName)
|
|
}
|
|
|
|
// We are only putting one certificate in the certificate pem file, so it's safe to just pick the first one
|
|
// TODO: Support multiple certs here in order to be able to rotate certs
|
|
cert := certs[0]
|
|
|
|
// gets the node name from the certificate common name
|
|
return strings.TrimPrefix(cert.Subject.CommonName, constants.NodesUserPrefix), nil
|
|
}
|
|
|
|
func getAPIEndpoint(client clientset.Interface, nodeName string, apiEndpoint *kubeadmapi.APIEndpoint) error {
|
|
return getAPIEndpointWithBackoff(client, nodeName, apiEndpoint, constants.StaticPodMirroringDefaultRetry)
|
|
}
|
|
|
|
func getAPIEndpointWithBackoff(client clientset.Interface, nodeName string, apiEndpoint *kubeadmapi.APIEndpoint, backoff wait.Backoff) error {
|
|
var err error
|
|
var errs []error
|
|
|
|
if err = getAPIEndpointFromPodAnnotation(client, nodeName, apiEndpoint, backoff); err == nil {
|
|
return nil
|
|
}
|
|
errs = append(errs, errors.WithMessagef(err, "could not retrieve API endpoints for node %q using pod annotations", nodeName))
|
|
|
|
// NB: this is a fallback when there is no annotation found in the API server pod that contains
|
|
// the API endpoint, and so we fallback to reading the ClusterStatus struct present in the
|
|
// kubeadm-config ConfigMap. This can happen for example, when performing the first
|
|
// `kubeadm upgrade apply` and `kubeadm upgrade node` cycle on the whole cluster. This logic
|
|
// will be removed when the cluster status struct is removed from the kubeadm-config ConfigMap.
|
|
if err = getAPIEndpointFromClusterStatus(client, nodeName, apiEndpoint); err == nil {
|
|
return nil
|
|
}
|
|
errs = append(errs, errors.WithMessagef(err, "could not retrieve API endpoints for node %q using cluster status", nodeName))
|
|
|
|
return errorsutil.NewAggregate(errs)
|
|
}
|
|
|
|
func getAPIEndpointFromPodAnnotation(client clientset.Interface, nodeName string, apiEndpoint *kubeadmapi.APIEndpoint, backoff wait.Backoff) error {
|
|
var rawAPIEndpoint string
|
|
var lastErr error
|
|
// Let's tolerate some unexpected transient failures from the API server or load balancers. Also, if
|
|
// static pods were not yet mirrored into the API server we want to wait for this propagation.
|
|
err := wait.ExponentialBackoff(backoff, func() (bool, error) {
|
|
rawAPIEndpoint, lastErr = getRawAPIEndpointFromPodAnnotationWithoutRetry(client, nodeName)
|
|
// TODO (ereslibre): this logic will need tweaking once that we get rid of the ClusterStatus, since we won't have
|
|
// the ClusterStatus safety net, we will want to remove the UnretriableError and not make the distinction here
|
|
// anymore.
|
|
if _, ok := lastErr.(*unretriableError); ok {
|
|
// Fail fast scenario, to be removed once we get rid of the ClusterStatus
|
|
return true, errors.Wrapf(lastErr, "API server Pods exist, but no API endpoint annotations were found")
|
|
}
|
|
return lastErr == nil, nil
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
parsedAPIEndpoint, err := kubeadmapi.APIEndpointFromString(rawAPIEndpoint)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "could not parse API endpoint for node %q", nodeName)
|
|
}
|
|
*apiEndpoint = parsedAPIEndpoint
|
|
return nil
|
|
}
|
|
|
|
func getRawAPIEndpointFromPodAnnotationWithoutRetry(client clientset.Interface, nodeName string) (string, error) {
|
|
podList, err := client.CoreV1().Pods(metav1.NamespaceSystem).List(
|
|
context.TODO(),
|
|
metav1.ListOptions{
|
|
FieldSelector: fmt.Sprintf("spec.nodeName=%s", nodeName),
|
|
LabelSelector: fmt.Sprintf("component=%s,tier=%s", constants.KubeAPIServer, constants.ControlPlaneTier),
|
|
},
|
|
)
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "could not retrieve list of pods to determine api server endpoints")
|
|
}
|
|
if len(podList.Items) != 1 {
|
|
return "", errors.Errorf("API server pod for node name %q has %d entries, only one was expected", nodeName, len(podList.Items))
|
|
}
|
|
if apiServerEndpoint, ok := podList.Items[0].Annotations[constants.KubeAPIServerAdvertiseAddressEndpointAnnotationKey]; ok {
|
|
return apiServerEndpoint, nil
|
|
}
|
|
return "", newUnretriableError(errors.Errorf("API server pod for node name %q hasn't got a %q annotation, cannot retrieve API endpoint", nodeName, constants.KubeAPIServerAdvertiseAddressEndpointAnnotationKey))
|
|
}
|
|
|
|
// TODO: remove after 1.20, when the ClusterStatus struct is removed from the kubeadm-config ConfigMap.
|
|
func getAPIEndpointFromClusterStatus(client clientset.Interface, nodeName string, apiEndpoint *kubeadmapi.APIEndpoint) error {
|
|
clusterStatus, err := GetClusterStatus(client)
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not retrieve cluster status")
|
|
}
|
|
if statusAPIEndpoint, ok := clusterStatus.APIEndpoints[nodeName]; ok {
|
|
*apiEndpoint = statusAPIEndpoint
|
|
return nil
|
|
}
|
|
return errors.Errorf("could not find node %s in the cluster status", nodeName)
|
|
}
|
|
|
|
// GetClusterStatus returns the kubeadm cluster status read from the kubeadm-config ConfigMap
|
|
func GetClusterStatus(client clientset.Interface) (*kubeadmapi.ClusterStatus, error) {
|
|
configMap, err := apiclient.GetConfigMapWithRetry(client, metav1.NamespaceSystem, constants.KubeadmConfigConfigMap)
|
|
if apierrors.IsNotFound(err) {
|
|
return &kubeadmapi.ClusterStatus{}, nil
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
clusterStatus, err := UnmarshalClusterStatus(configMap.Data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return clusterStatus, nil
|
|
}
|
|
|
|
// UnmarshalClusterStatus takes raw ConfigMap.Data and converts it to a ClusterStatus object
|
|
func UnmarshalClusterStatus(data map[string]string) (*kubeadmapi.ClusterStatus, error) {
|
|
clusterStatusData, ok := data[constants.ClusterStatusConfigMapKey]
|
|
if !ok {
|
|
return nil, errors.Errorf("unexpected error when reading kubeadm-config ConfigMap: %s key value pair missing", constants.ClusterStatusConfigMapKey)
|
|
}
|
|
clusterStatus := &kubeadmapi.ClusterStatus{}
|
|
if err := runtime.DecodeInto(kubeadmscheme.Codecs.UniversalDecoder(), []byte(clusterStatusData), clusterStatus); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return clusterStatus, nil
|
|
}
|