kubekey/test/e2e/framework/bootstrap/kind_util.go
24sama b492f1c6d3 feat: add k3s provider e2e test
Signed-off-by: 24sama <jacksama@foxmail.com>
2022-11-01 16:56:10 +08:00

198 lines
6.6 KiB
Go

/*
Copyright 2020 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 bootstrap
import (
"context"
"fmt"
"os"
"path/filepath"
. "github.com/onsi/gomega"
"github.com/pkg/errors"
"sigs.k8s.io/cluster-api/test/infrastructure/container"
kind "sigs.k8s.io/kind/pkg/cluster"
kindnodes "sigs.k8s.io/kind/pkg/cluster/nodes"
kindnodesutils "sigs.k8s.io/kind/pkg/cluster/nodeutils"
"github.com/kubesphere/kubekey/test/e2e/framework/clusterctl"
"github.com/kubesphere/kubekey/test/e2e/framework/internal/log"
)
// CreateKindBootstrapClusterAndLoadImagesInput is the input for CreateKindBootstrapClusterAndLoadImages.
type CreateKindBootstrapClusterAndLoadImagesInput struct {
// Name of the cluster.
Name string
// KubernetesVersion of the cluster.
KubernetesVersion string
// RequiresDockerSock defines if the cluster requires the docker sock.
RequiresDockerSock bool
// Images to be loaded in the cluster.
Images []clusterctl.ContainerImage
// IPFamily is either ipv4 or ipv6. Default is ipv4.
IPFamily string
// LogFolder where to dump logs in case of errors
LogFolder string
}
// CreateKindBootstrapClusterAndLoadImages returns a new Kubernetes cluster with pre-loaded images.
func CreateKindBootstrapClusterAndLoadImages(ctx context.Context, input CreateKindBootstrapClusterAndLoadImagesInput) ClusterProvider {
Expect(ctx).NotTo(BeNil(), "ctx is required for CreateKindBootstrapClusterAndLoadImages")
Expect(input.Name).ToNot(BeEmpty(), "Invalid argument. Name can't be empty when calling CreateKindBootstrapClusterAndLoadImages")
log.Logf("Creating a kind cluster with name %q", input.Name)
options := []KindClusterOption{}
if input.KubernetesVersion != "" {
options = append(options, WithNodeImage(fmt.Sprintf("%s:%s", DefaultNodeImageRepository, input.KubernetesVersion)))
}
if input.RequiresDockerSock {
options = append(options, WithDockerSockMount())
}
if input.IPFamily == "IPv6" {
options = append(options, WithIPv6Family())
}
if input.LogFolder != "" {
options = append(options, LogFolder(input.LogFolder))
}
clusterProvider := NewKindClusterProvider(input.Name, options...)
Expect(clusterProvider).ToNot(BeNil(), "Failed to create a kind cluster")
clusterProvider.Create(ctx)
Expect(clusterProvider.GetKubeconfigPath()).To(BeAnExistingFile(), "The kubeconfig file for the kind cluster with name %q does not exists at %q as expected", input.Name, clusterProvider.GetKubeconfigPath())
log.Logf("The kubeconfig file for the kind cluster is %s", clusterProvider.kubeconfigPath)
err := LoadImagesToKindCluster(ctx, LoadImagesToKindClusterInput{
Name: input.Name,
Images: input.Images,
})
if err != nil {
clusterProvider.Dispose(ctx)
Expect(err).NotTo(HaveOccurred()) // re-surface the error to fail the test
}
return clusterProvider
}
// LoadImagesToKindClusterInput is the input for LoadImagesToKindCluster.
type LoadImagesToKindClusterInput struct {
// Name of the cluster
Name string
// Images to be loaded in the cluster (this is kind specific)
Images []clusterctl.ContainerImage
}
// LoadImagesToKindCluster provides a utility for loading images into a kind cluster.
func LoadImagesToKindCluster(ctx context.Context, input LoadImagesToKindClusterInput) error {
if ctx == nil {
return errors.New("ctx is required for LoadImagesToKindCluster")
}
if input.Name == "" {
return errors.New("Invalid argument. Name can't be empty when calling LoadImagesToKindCluster")
}
containerRuntime, err := container.NewDockerClient()
if err != nil {
return errors.Wrap(err, "failed to get Docker runtime client")
}
ctx = container.RuntimeInto(ctx, containerRuntime)
for _, image := range input.Images {
log.Logf("Loading image: %q", image.Name)
if err := loadImage(ctx, input.Name, image.Name); err != nil {
switch image.LoadBehavior {
case clusterctl.MustLoadImage:
return errors.Wrapf(err, "Failed to load image %q into the kind cluster %q", image.Name, input.Name)
case clusterctl.TryLoadImage:
log.Logf("[WARNING] Unable to load image %q into the kind cluster %q: %v", image.Name, input.Name, err)
}
}
}
return nil
}
// LoadImage will put a local image onto the kind node.
// If the image doesn't exist locally we will attempt to pull it remotely.
func loadImage(ctx context.Context, cluster, image string) error {
// Save the image into a tar
dir, err := os.MkdirTemp("", "image-tar")
if err != nil {
return errors.Wrap(err, "failed to create tempdir")
}
defer os.RemoveAll(dir)
imageTarPath := filepath.Join(dir, "image.tar")
containerRuntime, err := container.RuntimeFrom(ctx)
if err != nil {
return errors.Wrap(err, "failed to access container runtime")
}
// in the nominal E2E scenario images have been locally built and added to cache
exists, err := containerRuntime.ImageExistsLocally(ctx, image)
if err != nil {
return errors.Wrapf(err, "error listing local image %s", image)
}
// in some scenarios we refer to a real reference image which may not have been pre-downloaded
if !exists {
log.Logf("Image %s not present in local container image cache, will pull", image)
err := containerRuntime.PullContainerImage(ctx, image)
if err != nil {
return errors.Wrapf(err, "error pulling image %q", image)
}
} else {
log.Logf("Image %s is present in local container image cache", image)
}
err = containerRuntime.SaveContainerImage(ctx, image, imageTarPath)
if err != nil {
return errors.Wrapf(err, "error saving image %q to %q", image, imageTarPath)
}
// Gets the nodes in the cluster
provider := kind.NewProvider()
nodeList, err := provider.ListInternalNodes(cluster)
if err != nil {
return err
}
// Load the image on the selected nodes
for _, node := range nodeList {
if err := load(imageTarPath, node); err != nil {
return err
}
}
return nil
}
// copied from kind https://github.com/kubernetes-sigs/kind/blob/v0.7.0/pkg/cmd/kind/load/docker-image/docker-image.go#L158
// loads an image tarball onto a node.
func load(imageTarName string, node kindnodes.Node) error {
f, err := os.Open(filepath.Clean(imageTarName))
if err != nil {
return errors.Wrap(err, "failed to open image")
}
defer f.Close()
return kindnodesutils.LoadImageArchive(node, f)
}