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-11-04 07:36:26 -04:00
|
|
|
"time"
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/bootstrapper/internal/kubernetes/k8sapi"
|
2022-11-04 07:36:26 -04:00
|
|
|
kubewaiter "github.com/edgelesssys/constellation/v2/bootstrapper/internal/kubernetes/kubeWaiter"
|
2022-11-24 04:57:58 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation/measurements"
|
2022-11-09 08:43:48 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/azureshared"
|
2022-10-26 04:37:10 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
2022-11-09 08:43:48 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/gcpshared"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
2022-10-18 07:15:54 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/deploy/helm"
|
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-11-04 07:36:26 -04:00
|
|
|
type kubeAPIWaiter interface {
|
|
|
|
Wait(ctx context.Context, kubernetesClient kubewaiter.KubernetesClient) error
|
|
|
|
}
|
|
|
|
|
2022-05-24 04:04:42 -04:00
|
|
|
// KubeWrapper implements Cluster interface.
|
2022-03-22 11:03:15 -04:00
|
|
|
type KubeWrapper struct {
|
2022-11-24 04:57:58 -05:00
|
|
|
cloudProvider string
|
|
|
|
clusterUtil clusterUtil
|
|
|
|
helmClient helmClient
|
|
|
|
kubeAPIWaiter kubeAPIWaiter
|
|
|
|
configProvider configurationProvider
|
|
|
|
client k8sapi.Client
|
|
|
|
kubeconfigReader configReader
|
|
|
|
providerMetadata ProviderMetadata
|
|
|
|
initialMeasurements measurements.M
|
|
|
|
getIPAddr func() (string, error)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// New creates a new KubeWrapper with real values.
|
2022-11-09 08:43:48 -05:00
|
|
|
func New(cloudProvider string, clusterUtil clusterUtil, configProvider configurationProvider, client k8sapi.Client,
|
2022-11-24 04:57:58 -05:00
|
|
|
providerMetadata ProviderMetadata, measurements measurements.M, helmClient helmClient, kubeAPIWaiter kubeAPIWaiter,
|
2022-05-24 04:04:42 -04:00
|
|
|
) *KubeWrapper {
|
2022-03-22 11:03:15 -04:00
|
|
|
return &KubeWrapper{
|
2022-11-24 04:57:58 -05:00
|
|
|
cloudProvider: cloudProvider,
|
|
|
|
clusterUtil: clusterUtil,
|
|
|
|
helmClient: helmClient,
|
|
|
|
kubeAPIWaiter: kubeAPIWaiter,
|
|
|
|
configProvider: configProvider,
|
|
|
|
client: client,
|
|
|
|
kubeconfigReader: &KubeconfigReader{fs: afero.Afero{Fs: afero.NewOsFs()}},
|
|
|
|
providerMetadata: providerMetadata,
|
|
|
|
initialMeasurements: measurements,
|
|
|
|
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-11-11 02:44:36 -05:00
|
|
|
enforceIDKeyDigest bool, idKeyDigest []byte, azureCVM bool,
|
2022-11-14 13:09:49 -05:00
|
|
|
helmReleasesRaw []byte, conformanceMode bool, kubernetesComponents versions.ComponentVersions, 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-11-14 13:09:49 -05:00
|
|
|
if err := k.clusterUtil.InstallComponentsFromCLI(ctx, kubernetesComponents); err != nil {
|
2022-06-28 12:33:27 -04:00
|
|
|
return nil, err
|
2022-05-19 11:18:22 -04:00
|
|
|
}
|
|
|
|
|
2022-05-24 04:04:42 -04:00
|
|
|
var nodePodCIDR 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
|
2022-11-09 08:43:48 -05:00
|
|
|
log.Infof("Retrieving node metadata")
|
|
|
|
instance, err := k.providerMetadata.Self(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("retrieving own instance metadata: %w", err)
|
|
|
|
}
|
|
|
|
if instance.VPCIP != "" {
|
|
|
|
validIPs = append(validIPs, net.ParseIP(instance.VPCIP))
|
|
|
|
}
|
|
|
|
nodeName := k8sCompliantHostname(instance.Name)
|
|
|
|
nodeIP := instance.VPCIP
|
|
|
|
subnetworkPodCIDR := instance.SecondaryIPRange
|
|
|
|
if len(instance.AliasIPRanges) > 0 {
|
|
|
|
nodePodCIDR = instance.AliasIPRanges[0]
|
|
|
|
}
|
2022-08-04 05:08:20 -04:00
|
|
|
|
2022-11-09 08:43:48 -05:00
|
|
|
// this is the endpoint in "kubeadm init --control-plane-endpoint=<IP/DNS>:<port>"
|
|
|
|
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-11-09 08:43:48 -05:00
|
|
|
|
2022-07-14 07:30:44 -04:00
|
|
|
log.With(
|
|
|
|
zap.String("nodeName", nodeName),
|
2022-11-09 08:43:48 -05:00
|
|
|
zap.String("providerID", instance.ProviderID),
|
2022-07-14 07:30:44 -04:00
|
|
|
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-11-09 08:43:48 -05:00
|
|
|
ccmSupported := cloudprovider.FromString(k.cloudProvider) == cloudprovider.Azure ||
|
|
|
|
cloudprovider.FromString(k.cloudProvider) == cloudprovider.GCP
|
|
|
|
initConfig := k.configProvider.InitConfiguration(ccmSupported, 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)
|
2022-11-09 08:43:48 -05:00
|
|
|
initConfig.SetProviderID(instance.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
|
|
|
}
|
2022-11-25 05:19:22 -05:00
|
|
|
err = k.client.Initialize(kubeConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("initializing kubectl client: %w", err)
|
|
|
|
}
|
2022-05-24 04:04:42 -04:00
|
|
|
|
2022-11-04 07:36:26 -04:00
|
|
|
waitCtx, cancel := context.WithTimeout(ctx, 2*time.Minute)
|
|
|
|
defer cancel()
|
|
|
|
if err := k.kubeAPIWaiter.Wait(waitCtx, k.client); err != nil {
|
|
|
|
return nil, fmt.Errorf("waiting for Kubernetes API to be available: %w", err)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
2022-11-24 04:57:58 -05:00
|
|
|
if err := k.initialMeasurements.SetEnforced(enforcedPCRs); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
measurementsJSON, err := json.Marshal(k.initialMeasurements)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("marshaling initial measurements: %w", err)
|
|
|
|
}
|
|
|
|
serviceConfig := constellationServicesConfig{
|
|
|
|
initialMeasurementsJSON: measurementsJSON,
|
|
|
|
idkeydigest: idKeyDigest,
|
|
|
|
measurementSalt: measurementSalt,
|
|
|
|
subnetworkPodCIDR: subnetworkPodCIDR,
|
|
|
|
cloudServiceAccountURI: cloudServiceAccountURI,
|
|
|
|
loadBalancerIP: controlPlaneIP,
|
|
|
|
}
|
2022-11-21 11:06:41 -05:00
|
|
|
extraVals, err := k.setupExtraVals(ctx, serviceConfig)
|
2022-10-26 04:37:10 -04:00
|
|
|
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-11-21 04:35:40 -05:00
|
|
|
// cert-manager is necessary for our operator deployments.
|
|
|
|
// They are currently only deployed on GCP & Azure. This is why we deploy cert-manager only on GCP & Azure.
|
|
|
|
if k.cloudProvider == "gcp" || k.cloudProvider == "azure" {
|
|
|
|
if err = k.helmClient.InstallCertManager(ctx, helmReleases.CertManager); err != nil {
|
|
|
|
return nil, fmt.Errorf("installing cert-manager: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
operatorVals, err := k.setupOperatorVals(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("setting up operator vals: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = k.helmClient.InstallOperators(ctx, helmReleases.Operators, operatorVals); err != nil {
|
|
|
|
return nil, fmt.Errorf("installing operators: %w", err)
|
2022-08-04 10:15:52 -04:00
|
|
|
}
|
|
|
|
|
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-11-09 08:43:48 -05:00
|
|
|
log.Infof("Retrieving node metadata")
|
|
|
|
instance, err := k.providerMetadata.Self(ctx)
|
2022-06-28 12:23:24 -04:00
|
|
|
if err != nil {
|
2022-11-09 08:43:48 -05:00
|
|
|
return fmt.Errorf("retrieving own instance metadata: %w", err)
|
2022-06-28 12:23:24 -04:00
|
|
|
}
|
2022-11-09 08:43:48 -05:00
|
|
|
providerID := instance.ProviderID
|
|
|
|
nodeInternalIP := instance.VPCIP
|
|
|
|
nodeName := k8sCompliantHostname(instance.Name)
|
|
|
|
|
|
|
|
loadbalancerEndpoint, err := k.providerMetadata.GetLoadBalancerEndpoint(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("retrieving own instance metadata: %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", nodeInternalIP),
|
|
|
|
).Infof("Setting information for node")
|
|
|
|
|
2022-08-31 21:40:29 -04:00
|
|
|
// Step 2: configure kubeadm join config
|
2022-11-09 08:43:48 -05:00
|
|
|
ccmSupported := cloudprovider.FromString(k.cloudProvider) == cloudprovider.Azure ||
|
|
|
|
cloudprovider.FromString(k.cloudProvider) == cloudprovider.GCP
|
|
|
|
joinConfig := k.configProvider.JoinConfiguration(ccmSupported)
|
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-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
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
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-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-11-21 11:06:41 -05:00
|
|
|
func (k *KubeWrapper) setupExtraVals(ctx context.Context, serviceConfig constellationServicesConfig) (map[string]any, error) {
|
2022-10-26 04:37:10 -04:00
|
|
|
extraVals := map[string]any{
|
2022-10-25 09:51:23 -04:00
|
|
|
"join-service": map[string]any{
|
2022-11-21 11:06:41 -05:00
|
|
|
"measurements": string(serviceConfig.initialMeasurementsJSON),
|
|
|
|
"measurementSalt": base64.StdEncoding.EncodeToString(serviceConfig.measurementSalt),
|
2022-10-24 06:23:18 -04:00
|
|
|
},
|
2022-11-02 08:06:07 -04:00
|
|
|
"ccm": map[string]any{},
|
2022-11-21 11:06:41 -05:00
|
|
|
"verification-service": map[string]any{
|
|
|
|
"loadBalancerIP": serviceConfig.loadBalancerIP,
|
|
|
|
},
|
2022-11-23 02:26:09 -05:00
|
|
|
"konnectivity": map[string]any{
|
|
|
|
"loadBalancerIP": serviceConfig.loadBalancerIP,
|
|
|
|
},
|
2022-10-26 04:37:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
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:
|
2022-11-09 08:43:48 -05:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2022-11-21 11:06:41 -05:00
|
|
|
serviceAccountKey, err := gcpshared.ServiceAccountKeyFromURI(serviceConfig.cloudServiceAccountURI)
|
2022-11-09 08:43:48 -05:00
|
|
|
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),
|
2022-11-21 11:06:41 -05:00
|
|
|
"subnetworkPodCIDR": serviceConfig.subnetworkPodCIDR,
|
2022-10-26 04:37:10 -04:00
|
|
|
}
|
2022-11-09 08:43:48 -05:00
|
|
|
|
2022-10-26 04:37:10 -04:00
|
|
|
case cloudprovider.Azure:
|
2022-11-09 08:43:48 -05:00
|
|
|
ccmAzure, ok := k.providerMetadata.(ccmConfigGetter)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("invalid cloud provider metadata for Azure")
|
|
|
|
}
|
|
|
|
|
2022-11-21 11:06:41 -05:00
|
|
|
ccmConfig, err := ccmAzure.GetCCMConfig(ctx, instance.ProviderID, serviceConfig.cloudServiceAccountURI)
|
2022-11-09 08:43:48 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("creating ccm secret: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
ccmVals, ok := extraVals["ccm"].(map[string]any)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("invalid ccm values")
|
|
|
|
}
|
|
|
|
ccmVals["Azure"] = map[string]any{
|
|
|
|
"azureConfig": string(ccmConfig),
|
2022-11-21 11:06:41 -05:00
|
|
|
"subnetworkPodCIDR": serviceConfig.subnetworkPodCIDR,
|
2022-11-09 08:43:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
joinVals, ok := extraVals["join-service"].(map[string]any)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("invalid join-service values")
|
|
|
|
}
|
2022-11-21 11:06:41 -05:00
|
|
|
joinVals["idkeydigest"] = hex.EncodeToString(serviceConfig.idkeydigest)
|
2022-11-09 08:43:48 -05:00
|
|
|
|
|
|
|
subscriptionID, resourceGroup, err := azureshared.BasicsFromProviderID(instance.ProviderID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2022-10-26 04:37:10 -04:00
|
|
|
}
|
2022-11-21 11:06:41 -05:00
|
|
|
creds, err := azureshared.ApplicationCredentialsFromURI(serviceConfig.cloudServiceAccountURI)
|
2022-11-09 08:43:48 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
extraVals["autoscaler"] = map[string]any{
|
|
|
|
"Azure": map[string]any{
|
|
|
|
"clientID": creds.AppClientID,
|
|
|
|
"clientSecret": creds.ClientSecretValue,
|
|
|
|
"resourceGroup": resourceGroup,
|
|
|
|
"subscriptionID": subscriptionID,
|
|
|
|
"tenantID": creds.TenantID,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2022-11-09 08:43:48 -05:00
|
|
|
|
2022-11-21 04:35:40 -05:00
|
|
|
func (k *KubeWrapper) setupOperatorVals(ctx context.Context) (map[string]any, error) {
|
|
|
|
uid, err := k.providerMetadata.UID(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("retrieving constellation UID: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return map[string]any{
|
|
|
|
"constellation-operator": map[string]any{
|
|
|
|
"constellationUID": uid,
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2022-11-09 08:43:48 -05:00
|
|
|
type ccmConfigGetter interface {
|
|
|
|
GetCCMConfig(ctx context.Context, providerID, cloudServiceAccountURI string) ([]byte, error)
|
|
|
|
}
|
2022-11-21 11:06:41 -05:00
|
|
|
|
|
|
|
type constellationServicesConfig struct {
|
|
|
|
initialMeasurementsJSON []byte
|
|
|
|
idkeydigest []byte
|
|
|
|
measurementSalt []byte
|
|
|
|
subnetworkPodCIDR string
|
|
|
|
cloudServiceAccountURI string
|
|
|
|
loadBalancerIP string
|
|
|
|
}
|