Skip to content

Commit

Permalink
Add test for k0smotron upgrade in standard mode
Browse files Browse the repository at this point in the history
This test recreates an upgrade of the k0smotron operator and checks that the behavior remains as expected after that.

Signed-off-by: Adrian Pedriza <[email protected]>
  • Loading branch information
AdrianPedriza committed Oct 7, 2024
1 parent 62df5bd commit 0a6b5d6
Show file tree
Hide file tree
Showing 4 changed files with 360 additions and 0 deletions.
1 change: 1 addition & 0 deletions inttest/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ check-capi-remote-machine-template-update: TIMEOUT=10m
check-capi-docker-machine-template-update: TIMEOUT=12m
check-capi-docker-machine-template-update-recreate: TIMEOUT=12m
check-capi-remote-machine-job-provision: TIMEOUT=10m
check-upgrade: TIMEOUT=20m
1 change: 1 addition & 0 deletions inttest/Makefile.variables
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ smoketests := \
check-capi-docker-machine-template-update \
check-capi-docker-machine-template-update-recreate \
check-capi-docker-machine-template-update-recreate-single \
check-upgrade \
238 changes: 238 additions & 0 deletions inttest/upgrade/standard_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,238 @@
/*
Copyright 2023.
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 upgrade

import (
"context"
"fmt"
"os"
"strings"
"testing"
"time"

"github.com/k0sproject/k0s/inttest/common"
"github.com/k0sproject/k0smotron/internal/exec"
"github.com/k0sproject/k0smotron/inttest/util"
"github.com/stretchr/testify/suite"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"sigs.k8s.io/yaml"

km "github.com/k0sproject/k0smotron/api/k0smotron.io/v1beta1"
)

type UpgradeSuite struct {
common.FootlooseSuite
}

func TestUpgradeSuite(t *testing.T) {
s := UpgradeSuite{
common.FootlooseSuite{
ControllerCount: 1,
WorkerCount: 1,
K0smotronWorkerCount: 1,
K0smotronImageBundleMountPoints: []string{"/dist/bundle.tar"},
},
}
suite.Run(t, &s)
}

func (s *UpgradeSuite) TestK0smotronUpgrade() {
s.T().Log("starting k0s")
s.Require().NoError(s.InitController(0, "--disable-components=konnectivity-server,metrics-server"))
s.Require().NoError(s.RunWorkers())

kc, err := s.KubeClient(s.ControllerNode(0))
s.Require().NoError(err)
rc, err := s.GetKubeConfig(s.ControllerNode(0))
s.Require().NoError(err)

err = s.WaitForNodeReady(s.WorkerNode(0), kc)
s.NoError(err)

s.T().Log("deploying stable k0smotron operator")
s.Require().NoError(util.InstallStableK0smotronOperator(s.Context(), kc, rc))
s.Require().NoError(common.WaitForDeployment(s.Context(), kc, "k0smotron-controller-manager", "k0smotron"))

s.T().Log("deploying k0smotron cluster")
s.createK0smotronCluster(s.Context(), kc)
s.Require().NoError(common.WaitForStatefulSet(s.Context(), kc, "kmc-kmc-test", "kmc-test"))

pod, err := kc.CoreV1().Pods("kmc-test").Get(s.Context(), "kmc-kmc-test-0", metav1.GetOptions{})
s.Require().NoError(err)
// We create state to subsequently validate that it persists between upgrades
s.addStateInMountedPath(s.Context(), pod.Spec.Containers[0].VolumeMounts[1].MountPath, kc, rc)

s.T().Log("deploying development k0smotron operator")
s.Require().NoError(s.ImportK0smotronImages(s.Context()))
s.Require().NoError(util.ApplyFromYAML(s.Context(), kc, rc, os.Getenv("K0SMOTRON_INSTALL_YAML")))
s.Require().NoError(util.WaitForRolloutCompleted(s.Context(), kc, "k0smotron-controller-manager", "k0smotron"))

s.forceControllerRecreation(s.Context(), pod.Name, kc)
s.checkStatePersists(s.Context(), pod.Spec.Containers[0].VolumeMounts[1].MountPath, kc, rc)

result, err := kc.RESTClient().Get().AbsPath("/apis/k0smotron.io/v1beta1/namespaces/kmc-test/clusters/kmc-test").DoRaw(s.Context())
s.Require().NoError(err)

// If the status of the Owner is correct, the status of all resources
// that have OwnerRef to this resource should also be correct.
var kmc km.Cluster
err = yaml.Unmarshal(result, &kmc)
s.Require().NoError(err)
s.Require().True(kmc.Status.Ready)
}

func (s *UpgradeSuite) checkStatePersists(ctx context.Context, mountedPath string, kc *kubernetes.Clientset, rc *rest.Config) {
successfulOutput := "File exists"
output := ""
cmd := fmt.Sprintf("test -f %s/manifests/mystack/manifest.yaml && echo \"%s\" || echo \"File does not exist\"", mountedPath, successfulOutput)
err := wait.PollUntilContextCancel(s.Context(), time.Second, true, func(_ context.Context) (done bool, err error) {
output, err = exec.PodExecCmdOutput(ctx, kc, rc, "kmc-kmc-test-0", "kmc-test", cmd)
if err != nil {
return false, nil
}

return true, nil
})
s.Require().NoError(err)
s.Require().Equal(strings.ReplaceAll(output, "\n", ""), successfulOutput)
}

func (s *UpgradeSuite) forceControllerRecreation(ctx context.Context, controllerName string, kc *kubernetes.Clientset) {
err := kc.CoreV1().Pods("kmc-test").Delete(ctx, controllerName, metav1.DeleteOptions{})
s.Require().NoError(err)
s.Require().NoError(common.WaitForPod(s.Context(), kc, controllerName, "kmc-test"))
}

func (s *UpgradeSuite) addStateInMountedPath(ctx context.Context, mountedPath string, kc *kubernetes.Clientset, rc *rest.Config) {
cmd := fmt.Sprintf("mkdir -p %s/manifests/mystack && k0s kubectl create ns test-ns --dry-run=client -oyaml > %s/manifests/mystack/manifest.yaml", mountedPath, mountedPath)
_, err := exec.PodExecCmdOutput(ctx, kc, rc, "kmc-kmc-test-0", "kmc-test", cmd)
s.Require().NoError(err)
}

func (s *UpgradeSuite) createK0smotronCluster(ctx context.Context, kc *kubernetes.Clientset) {
// create K0smotron namespace
_, err := kc.CoreV1().Namespaces().Create(ctx, &corev1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: "kmc-test",
},
}, metav1.CreateOptions{})
s.Require().NoError(err)

// create manifests
_, err = kc.CoreV1().Secrets("kmc-test").Create(ctx, &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{
Name: "manifest-secret",
},
Data: map[string][]byte{
"manifest.yaml": []byte(`---
apiVersion: v1
kind: Namespace
metadata:
name: test-ns-secret
`),
}}, metav1.CreateOptions{})
s.Require().NoError(err)

_, err = kc.CoreV1().ConfigMaps("kmc-test").Create(ctx, &corev1.ConfigMap{
ObjectMeta: metav1.ObjectMeta{
Name: "manifest-cm",
},
Data: map[string]string{
"manifest.yaml": `---
apiVersion: v1
kind: Namespace
metadata:
name: test-ns-cm
`,
}}, metav1.CreateOptions{})
s.Require().NoError(err)

kmc := []byte(`
{
"apiVersion": "k0smotron.io/v1beta1",
"kind": "Cluster",
"metadata": {
"name": "kmc-test",
"namespace": "kmc-test"
},
"spec": {
"service":{
"type": "NodePort"
},
"etcd": {
"defragJob": {
"enabled": true,
"schedule": "* * * * *"
}
},
"manifests": [
{
"name": "secret",
"secret": { "secretName": "manifest-secret" }
},
{
"name": "configmap",
"configMap": { "name": "manifest-cm" }
}
],
"mounts": [
{
"path": "/tmp/test",
"configMap": { "name": "manifest-cm" }
}
],
"resources": {
"requests": {
"cpu": "100m",
"memory": "100Mi"
}
},
"persistence": {
"type": "pvc",
"persistentVolumeClaim": {
"metadata": {
"name": "kmc-volume-test"
},
"spec": {
"accessModes": ["ReadWriteOnce"],
"storageClassName": "local-path",
"resources": {
"requests": {
"storage": "200Mi"
}
}
}
}
},
"k0sConfig": {
"apiVersion": "k0s.k0sproject.io/v1beta1",
"kind": "ClusterConfig",
"spec": {
"telemetry": {"enabled": false}
}
}
}
}
`)

res := kc.RESTClient().Post().AbsPath("/apis/k0smotron.io/v1beta1/namespaces/kmc-test/clusters").Body(kmc).Do(ctx)
s.Require().NoError(res.Error())
}
Loading

0 comments on commit 0a6b5d6

Please sign in to comment.