2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
import (
|
2022-05-19 11:18:22 -04:00
|
|
|
"context"
|
2022-10-24 06:23:18 -04:00
|
|
|
"encoding/base64"
|
2022-08-29 10:41:09 -04:00
|
|
|
"encoding/hex"
|
2022-08-12 09:59:45 -04:00
|
|
|
"encoding/json"
|
2022-10-26 04:37:10 -04:00
|
|
|
"errors"
|
2022-03-22 11:03:15 -04:00
|
|
|
"fmt"
|
2022-07-15 03:33:11 -04:00
|
|
|
"net"
|
2022-08-29 10:41:09 -04:00
|
|
|
"strconv"
|
2022-03-22 11:03:15 -04:00
|
|
|
"strings"
|
|
|
|
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/bootstrapper/internal/kubernetes/k8sapi"
|
|
|
|
"github.com/edgelesssys/constellation/v2/bootstrapper/internal/kubernetes/k8sapi/resources"
|
2022-10-26 04:37:10 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/metadata"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
2022-10-18 07:15:54 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/deploy/helm"
|
2022-10-26 04:37:10 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/gcpshared"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/logger"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/role"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/versions"
|
2022-03-22 11:03:15 -04:00
|
|
|
"github.com/spf13/afero"
|
2022-07-07 05:43:35 -04:00
|
|
|
"go.uber.org/zap"
|
2022-07-18 06:28:02 -04:00
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2022-03-22 11:03:15 -04:00
|
|
|
kubeadm "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
|
|
|
|
)
|
|
|
|
|
|
|
|
// configReader provides kubeconfig as []byte.
|
|
|
|
type configReader interface {
|
|
|
|
ReadKubeconfig() ([]byte, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// configurationProvider provides kubeadm init and join configuration.
|
|
|
|
type configurationProvider interface {
|
2022-07-22 09:05:04 -04:00
|
|
|
InitConfiguration(externalCloudProvider bool, k8sVersion versions.ValidK8sVersion) k8sapi.KubeadmInitYAML
|
2022-04-27 10:37:05 -04:00
|
|
|
JoinConfiguration(externalCloudProvider bool) k8sapi.KubeadmJoinYAML
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-05-24 04:04:42 -04:00
|
|
|
// KubeWrapper implements Cluster interface.
|
2022-03-22 11:03:15 -04:00
|
|
|
type KubeWrapper struct {
|
2022-06-15 10:00:48 -04:00
|
|
|
cloudProvider string
|
|
|
|
clusterUtil clusterUtil
|
2022-10-21 06:01:28 -04:00
|
|
|
helmClient helmClient
|
2022-06-15 10:00:48 -04:00
|
|
|
configProvider configurationProvider
|
|
|
|
client k8sapi.Client
|
|
|
|
kubeconfigReader configReader
|
|
|
|
cloudControllerManager CloudControllerManager
|
|
|
|
clusterAutoscaler ClusterAutoscaler
|
|
|
|
providerMetadata ProviderMetadata
|
|
|
|
initialMeasurementsJSON []byte
|
2022-06-28 12:23:24 -04:00
|
|
|
getIPAddr func() (string, error)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// New creates a new KubeWrapper with real values.
|
2022-05-24 04:04:42 -04:00
|
|
|
func New(cloudProvider string, clusterUtil clusterUtil, configProvider configurationProvider, client k8sapi.Client, cloudControllerManager CloudControllerManager,
|
2022-11-02 12:47:10 -04:00
|
|
|
clusterAutoscaler ClusterAutoscaler, providerMetadata ProviderMetadata, initialMeasurementsJSON []byte, helmClient helmClient,
|
2022-05-24 04:04:42 -04:00
|
|
|
) *KubeWrapper {
|
2022-03-22 11:03:15 -04:00
|
|
|
return &KubeWrapper{
|
2022-06-15 10:00:48 -04:00
|
|
|
cloudProvider: cloudProvider,
|
|
|
|
clusterUtil: clusterUtil,
|
2022-10-21 06:01:28 -04:00
|
|
|
helmClient: helmClient,
|
2022-06-15 10:00:48 -04:00
|
|
|
configProvider: configProvider,
|
|
|
|
client: client,
|
|
|
|
kubeconfigReader: &KubeconfigReader{fs: afero.Afero{Fs: afero.NewOsFs()}},
|
|
|
|
cloudControllerManager: cloudControllerManager,
|
|
|
|
clusterAutoscaler: clusterAutoscaler,
|
|
|
|
providerMetadata: providerMetadata,
|
|
|
|
initialMeasurementsJSON: initialMeasurementsJSON,
|
2022-08-26 05:44:05 -04:00
|
|
|
getIPAddr: getIPAddr,
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-26 05:22:21 -04:00
|
|
|
// InitCluster initializes a new Kubernetes cluster and applies pod network provider.
|
2022-06-15 10:00:48 -04:00
|
|
|
func (k *KubeWrapper) InitCluster(
|
2022-09-15 10:51:07 -04:00
|
|
|
ctx context.Context, cloudServiceAccountURI, versionString string, measurementSalt []byte, enforcedPCRs []uint32,
|
2022-10-21 06:01:28 -04:00
|
|
|
enforceIDKeyDigest bool, idKeyDigest []byte, azureCVM bool, sshUsers map[string]string,
|
2022-10-18 07:15:54 -04:00
|
|
|
helmReleasesRaw []byte, conformanceMode bool, log *logger.Logger,
|
2022-06-28 12:33:27 -04:00
|
|
|
) ([]byte, error) {
|
2022-07-22 09:05:04 -04:00
|
|
|
k8sVersion, err := versions.NewValidK8sVersion(versionString)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
log.With(zap.String("version", string(k8sVersion))).Infof("Installing Kubernetes components")
|
2022-06-21 11:59:12 -04:00
|
|
|
if err := k.clusterUtil.InstallComponents(ctx, k8sVersion); err != nil {
|
2022-06-28 12:33:27 -04:00
|
|
|
return nil, err
|
2022-05-19 11:18:22 -04:00
|
|
|
}
|
|
|
|
|
2022-06-28 12:23:24 -04:00
|
|
|
ip, err := k.getIPAddr()
|
2022-06-21 11:59:12 -04:00
|
|
|
if err != nil {
|
2022-06-28 12:33:27 -04:00
|
|
|
return nil, err
|
2022-06-21 11:59:12 -04:00
|
|
|
}
|
|
|
|
nodeName := ip
|
2022-05-24 04:04:42 -04:00
|
|
|
var providerID string
|
2022-06-28 12:23:24 -04:00
|
|
|
var instance metadata.InstanceMetadata
|
2022-05-24 04:04:42 -04:00
|
|
|
var nodePodCIDR string
|
|
|
|
var subnetworkPodCIDR string
|
2022-08-01 10:51:34 -04:00
|
|
|
var controlPlaneEndpoint string // this is the endpoint in "kubeadm init --control-plane-endpoint=<IP/DNS>:<port>"
|
2022-05-24 04:04:42 -04:00
|
|
|
var nodeIP string
|
2022-07-15 03:33:11 -04:00
|
|
|
var validIPs []net.IP
|
2022-05-24 04:04:42 -04:00
|
|
|
|
|
|
|
// Step 1: retrieve cloud metadata for Kubernetes configuration
|
|
|
|
if k.providerMetadata.Supported() {
|
2022-07-14 07:30:44 -04:00
|
|
|
log.Infof("Retrieving node metadata")
|
2022-06-21 11:59:12 -04:00
|
|
|
instance, err = k.providerMetadata.Self(ctx)
|
2022-05-24 04:04:42 -04:00
|
|
|
if err != nil {
|
2022-08-01 10:51:34 -04:00
|
|
|
return nil, fmt.Errorf("retrieving own instance metadata: %w", err)
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
2022-08-04 05:08:20 -04:00
|
|
|
if instance.VPCIP != "" {
|
|
|
|
validIPs = append(validIPs, net.ParseIP(instance.VPCIP))
|
2022-07-15 03:33:11 -04:00
|
|
|
}
|
2022-05-24 04:04:42 -04:00
|
|
|
nodeName = k8sCompliantHostname(instance.Name)
|
|
|
|
providerID = instance.ProviderID
|
2022-08-04 05:08:20 -04:00
|
|
|
nodeIP = instance.VPCIP
|
|
|
|
|
2022-05-24 04:04:42 -04:00
|
|
|
if len(instance.AliasIPRanges) > 0 {
|
|
|
|
nodePodCIDR = instance.AliasIPRanges[0]
|
|
|
|
}
|
2022-06-21 11:59:12 -04:00
|
|
|
subnetworkPodCIDR, err = k.providerMetadata.GetSubnetworkCIDR(ctx)
|
2022-05-24 04:04:42 -04:00
|
|
|
if err != nil {
|
2022-08-01 10:51:34 -04:00
|
|
|
return nil, fmt.Errorf("retrieving subnetwork CIDR: %w", err)
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
2022-11-02 07:56:16 -04:00
|
|
|
|
|
|
|
controlPlaneEndpoint, err = k.providerMetadata.GetLoadBalancerEndpoint(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("retrieving load balancer endpoint: %w", err)
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
|
|
|
}
|
2022-07-14 07:30:44 -04:00
|
|
|
log.With(
|
|
|
|
zap.String("nodeName", nodeName),
|
|
|
|
zap.String("providerID", providerID),
|
|
|
|
zap.String("nodeIP", nodeIP),
|
2022-10-24 10:58:21 -04:00
|
|
|
zap.String("controlPlaneEndpoint", controlPlaneEndpoint),
|
2022-07-14 07:30:44 -04:00
|
|
|
zap.String("podCIDR", subnetworkPodCIDR),
|
|
|
|
).Infof("Setting information for node")
|
2022-05-24 04:04:42 -04:00
|
|
|
|
|
|
|
// Step 2: configure kubeadm init config
|
2022-07-18 06:28:02 -04:00
|
|
|
initConfig := k.configProvider.InitConfiguration(k.cloudControllerManager.Supported(), k8sVersion)
|
2022-05-24 04:04:42 -04:00
|
|
|
initConfig.SetNodeIP(nodeIP)
|
2022-11-02 07:56:16 -04:00
|
|
|
initConfig.SetCertSANs([]string{nodeIP})
|
2022-05-24 04:04:42 -04:00
|
|
|
initConfig.SetNodeName(nodeName)
|
|
|
|
initConfig.SetProviderID(providerID)
|
2022-08-01 10:51:34 -04:00
|
|
|
initConfig.SetControlPlaneEndpoint(controlPlaneEndpoint)
|
2022-03-22 11:03:15 -04:00
|
|
|
initConfigYAML, err := initConfig.Marshal()
|
|
|
|
if err != nil {
|
2022-06-28 12:33:27 -04:00
|
|
|
return nil, fmt.Errorf("encoding kubeadm init configuration as YAML: %w", err)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
2022-07-14 07:30:44 -04:00
|
|
|
log.Infof("Initializing Kubernetes cluster")
|
2022-09-20 04:07:55 -04:00
|
|
|
if err := k.clusterUtil.InitCluster(ctx, initConfigYAML, nodeName, validIPs, controlPlaneEndpoint, conformanceMode, log); err != nil {
|
2022-06-28 12:33:27 -04:00
|
|
|
return nil, fmt.Errorf("kubeadm init: %w", err)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
kubeConfig, err := k.GetKubeconfig()
|
|
|
|
if err != nil {
|
2022-06-28 12:33:27 -04:00
|
|
|
return nil, fmt.Errorf("reading kubeconfig after cluster initialization: %w", err)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
k.client.SetKubeconfig(kubeConfig)
|
2022-05-24 04:04:42 -04:00
|
|
|
|
|
|
|
// Step 3: configure & start kubernetes controllers
|
2022-07-14 07:30:44 -04:00
|
|
|
log.Infof("Starting Kubernetes controllers and deployments")
|
2022-05-24 04:04:42 -04:00
|
|
|
setupPodNetworkInput := k8sapi.SetupPodNetworkInput{
|
2022-08-31 09:37:07 -04:00
|
|
|
CloudProvider: k.cloudProvider,
|
|
|
|
NodeName: nodeName,
|
|
|
|
FirstNodePodCIDR: nodePodCIDR,
|
|
|
|
SubnetworkPodCIDR: subnetworkPodCIDR,
|
|
|
|
LoadBalancerEndpoint: controlPlaneEndpoint,
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
2022-10-18 07:15:54 -04:00
|
|
|
|
|
|
|
var helmReleases helm.Releases
|
|
|
|
if err := json.Unmarshal(helmReleasesRaw, &helmReleases); err != nil {
|
|
|
|
return nil, fmt.Errorf("unmarshalling helm releases: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-10-21 06:01:28 -04:00
|
|
|
if err = k.helmClient.InstallCilium(ctx, k.client, helmReleases.Cilium, setupPodNetworkInput); err != nil {
|
2022-10-18 07:15:54 -04:00
|
|
|
return nil, fmt.Errorf("installing pod network: %w", err)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-08-31 21:40:29 -04:00
|
|
|
var controlPlaneIP string
|
|
|
|
if strings.Contains(controlPlaneEndpoint, ":") {
|
|
|
|
controlPlaneIP, _, err = net.SplitHostPort(controlPlaneEndpoint)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("parsing control plane endpoint: %w", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
controlPlaneIP = controlPlaneEndpoint
|
|
|
|
}
|
|
|
|
if err = k.clusterUtil.SetupKonnectivity(k.client, resources.NewKonnectivityAgents(controlPlaneIP)); err != nil {
|
|
|
|
return nil, fmt.Errorf("setting up konnectivity: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-10-26 04:37:10 -04:00
|
|
|
extraVals, err := k.setupExtraVals(ctx, k.initialMeasurementsJSON, idKeyDigest, measurementSalt, subnetworkPodCIDR, cloudServiceAccountURI)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("setting up extraVals: %w", err)
|
|
|
|
}
|
2022-10-24 06:23:18 -04:00
|
|
|
|
|
|
|
if err = k.helmClient.InstallConstellationServices(ctx, helmReleases.ConstellationServices, extraVals); err != nil {
|
|
|
|
return nil, fmt.Errorf("installing constellation-services: %w", err)
|
2022-04-12 10:07:17 -04:00
|
|
|
}
|
|
|
|
|
2022-08-31 14:10:49 -04:00
|
|
|
if err := k.setupInternalConfigMap(ctx, strconv.FormatBool(azureCVM)); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to setup internal ConfigMap: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-09-15 10:51:07 -04:00
|
|
|
if err := k.setupClusterAutoscaler(instance, cloudServiceAccountURI, k8sVersion); err != nil {
|
2022-06-28 12:33:27 -04:00
|
|
|
return nil, fmt.Errorf("setting up cluster autoscaler: %w", err)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-10-11 04:13:08 -04:00
|
|
|
// TODO: remove access manager or re-enable with support for readonly /etc
|
|
|
|
// accessManager := resources.NewAccessManagerDeployment(sshUsers)
|
|
|
|
// if err := k.clusterUtil.SetupAccessManager(k.client, accessManager); err != nil {
|
|
|
|
// return nil, fmt.Errorf("failed to setup access-manager: %w", err)
|
|
|
|
// }
|
2022-06-13 10:23:19 -04:00
|
|
|
|
2022-06-28 11:03:28 -04:00
|
|
|
if err := k.clusterUtil.SetupVerificationService(
|
2022-09-01 09:01:23 -04:00
|
|
|
k.client, resources.NewVerificationDaemonSet(k.cloudProvider, controlPlaneEndpoint),
|
2022-06-28 11:03:28 -04:00
|
|
|
); err != nil {
|
2022-06-28 12:33:27 -04:00
|
|
|
return nil, fmt.Errorf("failed to setup verification service: %w", err)
|
2022-06-28 11:03:28 -04:00
|
|
|
}
|
|
|
|
|
2022-08-31 07:39:58 -04:00
|
|
|
if err := k.setupOperators(ctx); err != nil {
|
|
|
|
return nil, fmt.Errorf("setting up operators: %w", err)
|
2022-08-04 10:15:52 -04:00
|
|
|
}
|
|
|
|
|
2022-07-05 08:14:11 -04:00
|
|
|
if k.cloudProvider == "gcp" {
|
|
|
|
if err := k.clusterUtil.SetupGCPGuestAgent(k.client, resources.NewGCPGuestAgentDaemonset()); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to setup gcp guest agent: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-26 04:58:39 -04:00
|
|
|
// Store the received k8sVersion in a ConfigMap, overwriting existing values (there shouldn't be any).
|
2022-07-18 06:28:02 -04:00
|
|
|
// Joining nodes determine the kubernetes version they will install based on this ConfigMap.
|
2022-07-20 10:44:41 -04:00
|
|
|
if err := k.setupK8sVersionConfigMap(ctx, k8sVersion); err != nil {
|
2022-08-31 14:10:49 -04:00
|
|
|
return nil, fmt.Errorf("failed to setup k8s version ConfigMap: %w", err)
|
2022-07-18 06:28:02 -04:00
|
|
|
}
|
|
|
|
|
2022-09-08 08:45:27 -04:00
|
|
|
k.clusterUtil.FixCilium(log)
|
2022-06-13 10:01:21 -04:00
|
|
|
|
2022-06-28 12:33:27 -04:00
|
|
|
return k.GetKubeconfig()
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-04-26 05:22:21 -04:00
|
|
|
// JoinCluster joins existing Kubernetes cluster.
|
2022-07-22 09:05:04 -04:00
|
|
|
func (k *KubeWrapper) JoinCluster(ctx context.Context, args *kubeadm.BootstrapTokenDiscovery, peerRole role.Role, versionString string, log *logger.Logger) error {
|
|
|
|
k8sVersion, err := versions.NewValidK8sVersion(versionString)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.With(zap.String("version", string(k8sVersion))).Infof("Installing Kubernetes components")
|
2022-07-18 06:28:02 -04:00
|
|
|
if err := k.clusterUtil.InstallComponents(ctx, k8sVersion); err != nil {
|
2022-05-19 11:18:22 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-24 04:04:42 -04:00
|
|
|
// Step 1: retrieve cloud metadata for Kubernetes configuration
|
2022-06-28 12:23:24 -04:00
|
|
|
nodeInternalIP, err := k.getIPAddr()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
nodeName := nodeInternalIP
|
2022-05-24 04:04:42 -04:00
|
|
|
var providerID string
|
2022-08-01 10:51:34 -04:00
|
|
|
var loadbalancerEndpoint string
|
2022-05-24 04:04:42 -04:00
|
|
|
if k.providerMetadata.Supported() {
|
2022-07-14 07:30:44 -04:00
|
|
|
log.Infof("Retrieving node metadata")
|
2022-06-28 12:23:24 -04:00
|
|
|
instance, err := k.providerMetadata.Self(ctx)
|
2022-05-24 04:04:42 -04:00
|
|
|
if err != nil {
|
2022-08-01 10:51:34 -04:00
|
|
|
return fmt.Errorf("retrieving own instance metadata: %w", err)
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
|
|
|
providerID = instance.ProviderID
|
|
|
|
nodeName = instance.Name
|
2022-08-04 05:08:20 -04:00
|
|
|
nodeInternalIP = instance.VPCIP
|
2022-11-02 07:56:16 -04:00
|
|
|
loadbalancerEndpoint, err = k.providerMetadata.GetLoadBalancerEndpoint(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("retrieving loadbalancer endpoint: %w", err)
|
2022-08-01 10:51:34 -04:00
|
|
|
}
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
|
|
|
nodeName = k8sCompliantHostname(nodeName)
|
|
|
|
|
2022-07-14 07:30:44 -04:00
|
|
|
log.With(
|
|
|
|
zap.String("nodeName", nodeName),
|
|
|
|
zap.String("providerID", providerID),
|
|
|
|
zap.String("nodeIP", nodeInternalIP),
|
|
|
|
).Infof("Setting information for node")
|
|
|
|
|
2022-08-31 21:40:29 -04:00
|
|
|
// Step 2: configure kubeadm join config
|
2022-05-24 04:04:42 -04:00
|
|
|
joinConfig := k.configProvider.JoinConfiguration(k.cloudControllerManager.Supported())
|
2022-07-08 04:59:59 -04:00
|
|
|
joinConfig.SetAPIServerEndpoint(args.APIServerEndpoint)
|
2022-03-22 11:03:15 -04:00
|
|
|
joinConfig.SetToken(args.Token)
|
|
|
|
joinConfig.AppendDiscoveryTokenCaCertHash(args.CACertHashes[0])
|
2022-04-25 11:24:48 -04:00
|
|
|
joinConfig.SetNodeIP(nodeInternalIP)
|
2022-03-22 11:03:15 -04:00
|
|
|
joinConfig.SetNodeName(nodeName)
|
|
|
|
joinConfig.SetProviderID(providerID)
|
2022-06-29 09:26:29 -04:00
|
|
|
if peerRole == role.ControlPlane {
|
2022-07-11 07:29:22 -04:00
|
|
|
joinConfig.SetControlPlane(nodeInternalIP)
|
2022-04-25 11:24:48 -04:00
|
|
|
}
|
2022-03-22 11:03:15 -04:00
|
|
|
joinConfigYAML, err := joinConfig.Marshal()
|
|
|
|
if err != nil {
|
2022-06-09 10:04:30 -04:00
|
|
|
return fmt.Errorf("encoding kubeadm join configuration as YAML: %w", err)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
2022-07-14 07:30:44 -04:00
|
|
|
log.With(zap.String("apiServerEndpoint", args.APIServerEndpoint)).Infof("Joining Kubernetes cluster")
|
2022-08-31 21:40:29 -04:00
|
|
|
if err := k.clusterUtil.JoinCluster(ctx, joinConfigYAML, peerRole, loadbalancerEndpoint, log); err != nil {
|
2022-06-09 10:04:30 -04:00
|
|
|
return fmt.Errorf("joining cluster: %v; %w ", string(joinConfigYAML), err)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-09-08 08:45:27 -04:00
|
|
|
k.clusterUtil.FixCilium(log)
|
2022-06-13 10:01:21 -04:00
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetKubeconfig returns the current nodes kubeconfig of stored on disk.
|
|
|
|
func (k *KubeWrapper) GetKubeconfig() ([]byte, error) {
|
2022-07-05 08:14:11 -04:00
|
|
|
return k.kubeconfigReader.ReadKubeconfig()
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-09-15 10:51:07 -04:00
|
|
|
func (k *KubeWrapper) setupClusterAutoscaler(instance metadata.InstanceMetadata, cloudServiceAccountURI string, k8sVersion versions.ValidK8sVersion) error {
|
2022-05-24 04:04:42 -04:00
|
|
|
if !k.clusterAutoscaler.Supported() {
|
|
|
|
return nil
|
|
|
|
}
|
2022-06-28 10:08:05 -04:00
|
|
|
caSecrets, err := k.clusterAutoscaler.Secrets(instance.ProviderID, cloudServiceAccountURI)
|
2022-05-24 04:04:42 -04:00
|
|
|
if err != nil {
|
2022-08-01 10:51:34 -04:00
|
|
|
return fmt.Errorf("defining Secrets for cluster-autoscaler: %w", err)
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
|
|
|
|
2022-07-21 08:41:07 -04:00
|
|
|
clusterAutoscalerConfiguration := resources.NewDefaultAutoscalerDeployment(k.clusterAutoscaler.Volumes(), k.clusterAutoscaler.VolumeMounts(), k.clusterAutoscaler.Env(), k8sVersion)
|
2022-05-24 04:04:42 -04:00
|
|
|
if err := k.clusterUtil.SetupAutoscaling(k.client, clusterAutoscalerConfiguration, caSecrets); err != nil {
|
2022-08-01 10:51:34 -04:00
|
|
|
return fmt.Errorf("setting up cluster-autoscaler: %w", err)
|
2022-05-24 04:04:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-07-18 06:28:02 -04:00
|
|
|
// setupK8sVersionConfigMap applies a ConfigMap (cf. server-side apply) to consistently store the installed k8s version.
|
2022-07-22 09:05:04 -04:00
|
|
|
func (k *KubeWrapper) setupK8sVersionConfigMap(ctx context.Context, k8sVersion versions.ValidK8sVersion) error {
|
2022-07-18 06:28:02 -04:00
|
|
|
config := corev1.ConfigMap{
|
|
|
|
TypeMeta: metav1.TypeMeta{
|
|
|
|
APIVersion: "v1",
|
|
|
|
Kind: "ConfigMap",
|
|
|
|
},
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "k8s-version",
|
|
|
|
Namespace: "kube-system",
|
|
|
|
},
|
|
|
|
Data: map[string]string{
|
2022-07-22 09:05:04 -04:00
|
|
|
constants.K8sVersion: string(k8sVersion),
|
2022-07-18 06:28:02 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// We do not use the client's Apply method here since we are handling a kubernetes-native type.
|
|
|
|
// These types don't implement our custom Marshaler interface.
|
|
|
|
if err := k.client.CreateConfigMap(ctx, config); err != nil {
|
2022-08-31 14:10:49 -04:00
|
|
|
return fmt.Errorf("apply in KubeWrapper.setupK8sVersionConfigMap(..) failed with: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// setupInternalConfigMap applies a ConfigMap (cf. server-side apply) to store information that is not supposed to be user-editable.
|
|
|
|
func (k *KubeWrapper) setupInternalConfigMap(ctx context.Context, azureCVM string) error {
|
|
|
|
config := corev1.ConfigMap{
|
|
|
|
TypeMeta: metav1.TypeMeta{
|
|
|
|
APIVersion: "v1",
|
|
|
|
Kind: "ConfigMap",
|
|
|
|
},
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: constants.InternalConfigMap,
|
|
|
|
Namespace: "kube-system",
|
|
|
|
},
|
|
|
|
Data: map[string]string{
|
|
|
|
constants.AzureCVM: azureCVM,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// We do not use the client's Apply method here since we are handling a kubernetes-native type.
|
|
|
|
// These types don't implement our custom Marshaler interface.
|
|
|
|
if err := k.client.CreateConfigMap(ctx, config); err != nil {
|
|
|
|
return fmt.Errorf("apply in KubeWrapper.setupInternalConfigMap failed with: %w", err)
|
2022-07-18 06:28:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-08-04 10:15:52 -04:00
|
|
|
// setupOperators deploys the operator lifecycle manager and subscriptions to operators.
|
|
|
|
func (k *KubeWrapper) setupOperators(ctx context.Context) error {
|
|
|
|
if err := k.clusterUtil.SetupOperatorLifecycleManager(ctx, k.client, &resources.OperatorLifecycleManagerCRDs{}, &resources.OperatorLifecycleManager{}, resources.OLMCRDNames); err != nil {
|
|
|
|
return fmt.Errorf("setting up OLM: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := k.clusterUtil.SetupNodeMaintenanceOperator(k.client, resources.NewNodeMaintenanceOperatorDeployment()); err != nil {
|
|
|
|
return fmt.Errorf("setting up node maintenance operator: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
uid, err := k.providerMetadata.UID(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("retrieving constellation UID: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := k.clusterUtil.SetupNodeOperator(ctx, k.client, resources.NewNodeOperatorDeployment(k.cloudProvider, uid)); err != nil {
|
|
|
|
return fmt.Errorf("setting up constellation node operator: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-24 04:04:42 -04:00
|
|
|
// k8sCompliantHostname transforms a hostname to an RFC 1123 compliant, lowercase subdomain as required by Kubernetes node names.
|
|
|
|
// The following regex is used by k8s for validation: /^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$/ .
|
|
|
|
// Only a simple heuristic is used for now (to lowercase, replace underscores).
|
|
|
|
func k8sCompliantHostname(in string) string {
|
|
|
|
hostname := strings.ToLower(in)
|
|
|
|
hostname = strings.ReplaceAll(hostname, "_", "-")
|
|
|
|
return hostname
|
2022-05-04 08:32:34 -04:00
|
|
|
}
|
|
|
|
|
2022-05-19 11:18:22 -04:00
|
|
|
// StartKubelet starts the kubelet service.
|
2022-09-08 08:45:27 -04:00
|
|
|
func (k *KubeWrapper) StartKubelet(log *logger.Logger) error {
|
|
|
|
if err := k.clusterUtil.StartKubelet(); err != nil {
|
|
|
|
return fmt.Errorf("starting kubelet: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
k.clusterUtil.FixCilium(log)
|
|
|
|
return nil
|
2022-05-19 11:18:22 -04:00
|
|
|
}
|
2022-08-26 05:44:05 -04:00
|
|
|
|
|
|
|
// getIPAddr retrieves to default sender IP used for outgoing connection.
|
|
|
|
func getIPAddr() (string, error) {
|
|
|
|
conn, err := net.Dial("udp", "8.8.8.8:80")
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
localAddr := conn.LocalAddr().(*net.UDPAddr)
|
|
|
|
|
|
|
|
return localAddr.IP.String(), nil
|
|
|
|
}
|
2022-10-24 06:23:18 -04:00
|
|
|
|
|
|
|
// setupExtraVals create a helm values map for consumption by helm-install.
|
|
|
|
// Will move to a more dedicated place once that place becomes apparent.
|
2022-10-26 04:37:10 -04:00
|
|
|
func (k *KubeWrapper) setupExtraVals(ctx context.Context, initialMeasurementsJSON []byte, idkeydigest []byte, measurementSalt []byte, subnetworkCIDR string, cloudServiceAccountURI string) (map[string]any, error) {
|
|
|
|
extraVals := map[string]any{
|
2022-10-25 09:51:23 -04:00
|
|
|
"join-service": map[string]any{
|
2022-10-24 06:23:18 -04:00
|
|
|
"measurements": string(initialMeasurementsJSON),
|
|
|
|
"measurementSalt": base64.StdEncoding.EncodeToString(measurementSalt),
|
|
|
|
},
|
2022-10-26 04:37:10 -04:00
|
|
|
"ccm": map[string]any{
|
|
|
|
"subnetworkCIDR": subnetworkCIDR,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
instance, err := k.providerMetadata.Self(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("retrieving current instance: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch cloudprovider.FromString(k.cloudProvider) {
|
|
|
|
case cloudprovider.GCP:
|
|
|
|
{
|
|
|
|
uid, err := k.providerMetadata.UID(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("getting uid: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
projectID, _, _, err := gcpshared.SplitProviderID(instance.ProviderID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("splitting providerID: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
serviceAccountKey, err := gcpshared.ServiceAccountKeyFromURI(cloudServiceAccountURI)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("getting service account key: %w", err)
|
|
|
|
}
|
|
|
|
rawKey, err := json.Marshal(serviceAccountKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("marshaling service account key: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
ccmVals, ok := extraVals["ccm"].(map[string]any)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("invalid ccm values")
|
|
|
|
}
|
|
|
|
ccmVals["GCP"] = map[string]any{
|
|
|
|
"projectID": projectID,
|
|
|
|
"uid": uid,
|
|
|
|
"secretData": string(rawKey),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case cloudprovider.Azure:
|
|
|
|
{
|
|
|
|
// TODO: After refactoring the ProviderMetadata interface this section should be rewritten.
|
|
|
|
// Currently, we have to rely on the Secrets(..) method, as GetNetworkSecurityGroupName & GetLoadBalancerName
|
|
|
|
// rely on Azure specific API endpoints.
|
|
|
|
ccmSecrets, err := k.cloudControllerManager.Secrets(ctx, instance.ProviderID, cloudServiceAccountURI)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("creating ccm secret: %w", err)
|
|
|
|
}
|
|
|
|
if len(ccmSecrets) < 1 {
|
|
|
|
return nil, errors.New("missing secret")
|
|
|
|
}
|
|
|
|
rawConfig := ccmSecrets[0].Data["azure.json"]
|
|
|
|
|
|
|
|
ccmVals, ok := extraVals["ccm"].(map[string]any)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("invalid ccm values")
|
|
|
|
}
|
|
|
|
ccmVals["Azure"] = map[string]any{
|
|
|
|
"azureConfig": string(rawConfig),
|
|
|
|
}
|
|
|
|
|
|
|
|
joinVals, ok := extraVals["join-service"].(map[string]any)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("invalid join-service values")
|
|
|
|
}
|
|
|
|
joinVals["idkeydigest"] = hex.EncodeToString(idkeydigest)
|
|
|
|
}
|
2022-10-24 06:23:18 -04:00
|
|
|
}
|
2022-10-26 04:37:10 -04:00
|
|
|
return extraVals, nil
|
2022-10-24 06:23:18 -04:00
|
|
|
}
|