Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add e2e test case for daemonset pod updater controller #1504

Merged
merged 2 commits into from
Jun 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
330 changes: 330 additions & 0 deletions test/e2e/yurt/daemonpodupdater.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,330 @@
/*
Copyright 2023 The OpenYurt 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 yurt

import (
"context"
"fmt"
"os/exec"
"time"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/rand"
"sigs.k8s.io/controller-runtime/pkg/client"

"github.com/openyurtio/openyurt/test/e2e/util"
ycfg "github.com/openyurtio/openyurt/test/e2e/yurtconfig"
)

const (
PodNeedUpgrade corev1.PodConditionType = "PodNeedUpgrade"
ServerName string = "127.0.0.1"
ServerPort string = "10267"
FlannelNamespace string = "kube-flannel"
)

var _ = Describe("daemonPodUpdater Test", Ordered, func() {
ctx := context.Background()
timeout := 60 * time.Second
k8sClient := ycfg.YurtE2eCfg.RuntimeClient
nodeToImageMap := make(map[string]string)

var updateStrategyType string
var namespaceName string

daemonSetName := "busybox-daemonset"
testImg1 := "busybox"
testImg2 := "busybox:1.36.0"

createNamespace := func() {
ns := corev1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: namespaceName,
},
}
Eventually(
func() error {
return k8sClient.Delete(ctx, &ns, client.PropagationPolicy(metav1.DeletePropagationForeground))
}).WithTimeout(timeout).WithPolling(time.Millisecond * 500).Should(SatisfyAny(BeNil(), &util.NotFoundMatcher{}))
By("make sure all the resources are removed")

res := &corev1.Namespace{}
Eventually(
func() error {
return k8sClient.Get(ctx, client.ObjectKey{
Name: namespaceName,
}, res)
}).WithTimeout(timeout).WithPolling(time.Millisecond * 500).Should(&util.NotFoundMatcher{})
Eventually(
func() error {
return k8sClient.Create(ctx, &ns)
}).WithTimeout(timeout).WithPolling(time.Millisecond * 300).Should(SatisfyAny(BeNil(), &util.AlreadyExistMatcher{}))
}

createDaemonSet := func() {
Eventually(func() error {
return k8sClient.Delete(ctx, &appsv1.DaemonSet{
ObjectMeta: metav1.ObjectMeta{
Name: daemonSetName,
Namespace: namespaceName,
},
})
}).WithTimeout(timeout).WithPolling(time.Millisecond * 300).Should(SatisfyAny(BeNil(), &util.NotFoundMatcher{}))

testContainerName := "bs"
testLabel := map[string]string{"app": daemonSetName}
testAnnotations := map[string]string{"apps.openyurt.io/update-strategy": updateStrategyType}

testDaemonSet := &appsv1.DaemonSet{
ObjectMeta: metav1.ObjectMeta{
Name: daemonSetName,
Namespace: namespaceName,
Annotations: testAnnotations,
},
Spec: appsv1.DaemonSetSpec{
Selector: &metav1.LabelSelector{
MatchLabels: testLabel,
},
UpdateStrategy: appsv1.DaemonSetUpdateStrategy{
Type: appsv1.OnDeleteDaemonSetStrategyType,
},
Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Labels: testLabel,
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{
{
Name: testContainerName,
Image: testImg1,
Command: []string{"/bin/sh"},
Args: []string{"-c", "while true; do echo hello; sleep 10;done"},
},
},
},
},
},
}

Eventually(func() error {
return k8sClient.Create(ctx, testDaemonSet)
}).WithTimeout(timeout).WithPolling(time.Millisecond * 300).Should(SatisfyAny(BeNil(), &util.AlreadyExistMatcher{}))
}

updateDaemonSet := func() {
Eventually(func() error {
testDaemonSet := &appsv1.DaemonSet{}
if err := k8sClient.Get(ctx, client.ObjectKey{
Name: daemonSetName,
Namespace: namespaceName,
}, testDaemonSet); err != nil {
return err
}
testDaemonSet.Spec.Template.Spec.Containers[0].Image = testImg2
return k8sClient.Update(ctx, testDaemonSet)
}).WithTimeout(timeout).WithPolling(time.Millisecond * 500).Should(SatisfyAny(BeNil()))
}

checkPodStatusAndUpdate := func() {
nodeToImageMap = map[string]string{}
Eventually(func() error {
testPods := &corev1.PodList{}
if err := k8sClient.List(ctx, testPods, client.InNamespace(namespaceName), client.MatchingLabels{"app": daemonSetName}); err != nil {
return err
}
if len(testPods.Items) != 2 {
return fmt.Errorf("not reconcile")
}
for _, pod := range testPods.Items {
if pod.Status.Phase != corev1.PodRunning {
return fmt.Errorf("not running")
}
nodeToImageMap[pod.Spec.NodeName] = pod.Spec.Containers[0].Image
}
return nil
}).WithTimeout(timeout).WithPolling(time.Millisecond * 500).Should(SatisfyAny(BeNil()))
}

checkNodeStatus := func(nodeName string) error {
node := &corev1.Node{}
if err := k8sClient.Get(ctx, client.ObjectKey{Name: nodeName}, node); err != nil {
return err
}
for _, condition := range node.Status.Conditions {
if condition.Type == corev1.NodeReady && condition.Status == corev1.ConditionTrue {
return nil
}
}
return fmt.Errorf("node openyurt-e2e-test-worker2 is not ready")
}

reconnectNode := func(nodeName string) {
// reconnect node
cmd := exec.Command("/bin/bash", "-c", "docker network connect kind "+nodeName)
err := cmd.Run()
Expect(err).NotTo(HaveOccurred(), "fail to reconnect "+nodeName+" node to kind bridge")

Eventually(func() error {
return checkNodeStatus(nodeName)
}).WithTimeout(120 * time.Second).WithPolling(1 * time.Second).Should(Succeed())

// restart flannel pod on node to recover flannel NIC
Eventually(func() error {
flannelPods := &corev1.PodList{}
if err := k8sClient.List(ctx, flannelPods, client.InNamespace(FlannelNamespace)); err != nil {
return err
}
if len(flannelPods.Items) != 3 {
return fmt.Errorf("not reconcile")
}
for _, pod := range flannelPods.Items {
if pod.Spec.NodeName == nodeName {
if err := k8sClient.Delete(ctx, &pod); err != nil {
return err
}
}
}
return nil
}).WithTimeout(timeout).Should(SatisfyAny(BeNil()))
}

BeforeEach(func() {
By("Start to run daemonPodUpdater test, clean up previous resources")
nodeToImageMap = map[string]string{}
k8sClient = ycfg.YurtE2eCfg.RuntimeClient
namespaceName = "daemonpodupdater-e2e-test" + "-" + rand.String(4)
createNamespace()
})

AfterEach(func() {
By("Cleanup resources after test")
By(fmt.Sprintf("Delete the entire namespaceName %s", namespaceName))

Expect(k8sClient.Delete(ctx, &corev1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: namespaceName}}, client.PropagationPolicy(metav1.DeletePropagationBackground))).Should(BeNil())
})

Describe("Test DaemonPodUpdater auto upgrade model", func() {
It("Test one worker disconnect", func() {
By("Run daemonset auto upgrade model test")
updateStrategyType = "Auto"

createDaemonSet()
checkPodStatusAndUpdate()

// disconnect openyurt-e2e-test-worker2 node
cmd := exec.Command("/bin/bash", "-c", "docker network disconnect kind openyurt-e2e-test-worker2")
err := cmd.Run()
Expect(err).NotTo(HaveOccurred(), "fail to disconnect openyurt-e2e-test-worker2 node to kind bridge: docker network disconnect kind %s")
Eventually(func() error {
return checkNodeStatus("openyurt-e2e-test-worker2")
}).WithTimeout(120 * time.Second).WithPolling(1 * time.Second).Should(SatisfyAll(HaveOccurred(), Not(&util.NotFoundMatcher{})))

// update the daemonset
updateDaemonSet()

// check image version
Eventually(func() error {
checkPodStatusAndUpdate()
if nodeToImageMap["openyurt-e2e-test-worker"] == testImg2 && nodeToImageMap["openyurt-e2e-test-worker2"] == testImg1 {
return nil
}
return fmt.Errorf("error image update")
}).WithTimeout(timeout).WithPolling(time.Millisecond * 500).Should(Succeed())

// recover network environment
reconnectNode("openyurt-e2e-test-worker2")

// check image version
Eventually(func() error {
checkPodStatusAndUpdate()
if nodeToImageMap["openyurt-e2e-test-worker"] == testImg2 && nodeToImageMap["openyurt-e2e-test-worker2"] == testImg2 {
return nil
}
return fmt.Errorf("error image update")
}).WithTimeout(timeout).WithPolling(time.Millisecond * 500).Should(Succeed())
})

AfterEach(func() {
By("Reconnect openyurt-e2e-test-worker2 node if it is disconnected")
if err := checkNodeStatus("openyurt-e2e-test-worker2"); err == nil {
return
}
// reconnect openyurt-e2e-test-worker2 node to avoid impact on other tests
reconnectNode("openyurt-e2e-test-worker2")
})
})

Describe("Test DaemonPodUpdater ota upgrade model", func() {
It("Test ota update for one worker", func() {
By("Run daemonset ota upgrade model test")
var pN2 string
updateStrategyType = "OTA"

createDaemonSet()
checkPodStatusAndUpdate()

// update the daemonset
updateDaemonSet()

// check status condition PodNeedUpgrade
Eventually(func() error {
testPods := &corev1.PodList{}
if err := k8sClient.List(ctx, testPods, client.InNamespace(namespaceName), client.MatchingLabels{"app": daemonSetName}); err != nil {
return err
}
if len(testPods.Items) != 2 {
return fmt.Errorf("not reconcile")
}
for _, pod := range testPods.Items {
for _, condition := range pod.Status.Conditions {
if condition.Type == PodNeedUpgrade && condition.Status != corev1.ConditionTrue {
return fmt.Errorf("pod %s status condition PodNeedUpgrade is not true", pod.Name)
}
}
if pod.Spec.NodeName == "openyurt-e2e-test-worker2" {
pN2 = pod.Name
}
}
return nil
}).WithTimeout(timeout).WithPolling(time.Millisecond * 500).Should(SatisfyAny(BeNil()))

// ota update for openyurt-e2e-test-worker2 node
Eventually(func() string {
curlCmd := fmt.Sprintf("curl -X POST %s:%s/openyurt.io/v1/namespaces/%s/pods/%s/upgrade", ServerName, ServerPort, namespaceName, pN2)
opBytes, err := exec.Command("/bin/bash", "-c", "docker exec -t openyurt-e2e-test-worker2 /bin/bash -c '"+curlCmd+"'").CombinedOutput()

if err != nil {
return ""
}
return string(opBytes)
}).WithTimeout(10*time.Second).WithPolling(1*time.Second).Should(ContainSubstring("Start updating pod"), "fail to ota update for pod")

// check image version
Eventually(func() error {
checkPodStatusAndUpdate()
if nodeToImageMap["openyurt-e2e-test-worker"] == testImg1 && nodeToImageMap["openyurt-e2e-test-worker2"] == testImg2 {
return nil
}
return fmt.Errorf("error image update")
}).WithTimeout(timeout).WithPolling(time.Millisecond * 500).Should(Succeed())
})
})
})