mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
4a68fbd8e9
Signed-off-by: Derek Nola <derek.nola@suse.com>
593 lines
21 KiB
Go
593 lines
21 KiB
Go
package upgradecluster
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
|
|
tf "github.com/k3s-io/k3s/tests/terraform"
|
|
"github.com/k3s-io/k3s/tests/terraform/createcluster"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var (
|
|
arch = flag.String("arch", "amd64", "a string")
|
|
destroy = flag.Bool("destroy", false, "a bool")
|
|
failed = false
|
|
upgradeVersion = flag.String("upgradeVersion", "", "Version to upgrade the cluster to")
|
|
)
|
|
|
|
func Test_TFClusterUpgradeValidation(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
flag.Parse()
|
|
RunSpecs(t, "Upgrade Cluster Test Suite")
|
|
}
|
|
|
|
var _ = Describe("Test:", func() {
|
|
Context("Build Cluster:", func() {
|
|
It("Starts up with no issues", func() {
|
|
_, err := createcluster.BuildCluster(&testing.T{}, false)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
defer GinkgoRecover()
|
|
if strings.Contains(createcluster.ClusterType, "etcd") {
|
|
fmt.Println("Backend:", createcluster.ClusterType)
|
|
} else {
|
|
fmt.Println("Backend:", createcluster.ExternalDb)
|
|
}
|
|
Expect(createcluster.KubeConfigFile).ShouldNot(BeEmpty())
|
|
|
|
if createcluster.ExternalDb != "" && createcluster.ClusterType == "" {
|
|
for i := 0; i > len(createcluster.MasterIPs); i++ {
|
|
cmd := "grep \"datastore-endpoint\" /etc/systemd/system/k3s.service"
|
|
res, err := tf.RunCmdOnNode(cmd, string(createcluster.MasterIPs[0]), createcluster.AwsUser, createcluster.AccessKey)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(res).Should(ContainSubstring(createcluster.RenderedTemplate))
|
|
}
|
|
}
|
|
|
|
tf.PrintFileContents(createcluster.KubeConfigFile)
|
|
Expect(createcluster.KubeConfigFile).ShouldNot(BeEmpty())
|
|
Expect(createcluster.MasterIPs).ShouldNot(BeEmpty())
|
|
|
|
fmt.Println("Server Node IPS:", createcluster.MasterIPs)
|
|
fmt.Println("Agent Node IPS:", createcluster.WorkerIPs)
|
|
|
|
if createcluster.NumWorkers > 0 {
|
|
Expect(createcluster.WorkerIPs).ShouldNot(BeEmpty())
|
|
} else {
|
|
Expect(createcluster.WorkerIPs).Should(BeEmpty())
|
|
}
|
|
})
|
|
|
|
It("Checks Node and Pod Status", func() {
|
|
defer func() {
|
|
_, err := tf.ParseNodes(createcluster.KubeConfigFile, true)
|
|
if err != nil {
|
|
fmt.Println("Error retrieving nodes: ", err)
|
|
}
|
|
_, err = tf.ParsePods(createcluster.KubeConfigFile, true)
|
|
if err != nil {
|
|
fmt.Println("Error retrieving pods: ", err)
|
|
}
|
|
}()
|
|
|
|
expectedNodeCount := createcluster.NumServers + createcluster.NumWorkers
|
|
|
|
fmt.Printf("\nFetching node status\n")
|
|
Eventually(func(g Gomega) {
|
|
nodes, err := tf.ParseNodes(createcluster.KubeConfigFile, false)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(len(nodes)).To(Equal(expectedNodeCount),
|
|
"Number of nodes should match the spec")
|
|
|
|
for _, node := range nodes {
|
|
g.Expect(node.Status).Should(Equal("Ready"),
|
|
"Nodes should all be in Ready state")
|
|
}
|
|
}, "600s", "5s").Should(Succeed())
|
|
|
|
fmt.Printf("\nFetching pod status\n")
|
|
Eventually(func(g Gomega) {
|
|
pods, err := tf.ParsePods(createcluster.KubeConfigFile, false)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
|
|
for _, pod := range pods {
|
|
if strings.Contains(pod.Name, "helm-install") {
|
|
g.Expect(pod.Status).Should(Equal("Completed"), pod.Name)
|
|
} else {
|
|
g.Expect(pod.Status).Should(Equal("Running"), pod.Name)
|
|
g.Expect(pod.Restarts).Should(Equal("0"), pod.Name)
|
|
}
|
|
}
|
|
}, "600s", "5s").Should(Succeed())
|
|
})
|
|
|
|
It("Verifies ClusterIP Service", func() {
|
|
_, err := tf.DeployWorkload("clusterip.yaml", createcluster.KubeConfigFile, *arch)
|
|
Expect(err).NotTo(HaveOccurred(), "Cluster IP manifest not deployed")
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l k8s-app=nginx-app-clusterip" +
|
|
" --field-selector=status.phase=Running --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-clusterip"))
|
|
}, "420s", "5s").Should(Succeed())
|
|
|
|
clusterip, _ := tf.FetchClusterIP(createcluster.KubeConfigFile, "nginx-clusterip-svc")
|
|
cmd := "curl -sL --insecure http://" + clusterip + "/name.html"
|
|
nodeExternalIP := tf.FetchNodeExternalIP(createcluster.KubeConfigFile)
|
|
|
|
for _, ip := range nodeExternalIP {
|
|
Eventually(func(g Gomega) {
|
|
res, err := tf.RunCmdOnNode(cmd, ip, createcluster.AwsUser, createcluster.AccessKey)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-clusterip"))
|
|
}, "420s", "10s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Verifies NodePort Service", func() {
|
|
_, err := tf.DeployWorkload("nodeport.yaml", createcluster.KubeConfigFile, *arch)
|
|
Expect(err).NotTo(HaveOccurred(), "NodePort manifest not deployed")
|
|
|
|
nodeExternalIP := tf.FetchNodeExternalIP(createcluster.KubeConfigFile)
|
|
cmd := "kubectl get service nginx-nodeport-svc --kubeconfig=" + createcluster.KubeConfigFile +
|
|
" --output jsonpath=\"{.spec.ports[0].nodePort}\""
|
|
|
|
nodeport, err := tf.RunCommand(cmd)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
for _, ip := range nodeExternalIP {
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l k8s-app=nginx-app-nodeport " +
|
|
"--field-selector=status.phase=Running --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-nodeport"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
|
|
cmd = "curl -sL --insecure http://" + ip + ":" + nodeport + "/name.html"
|
|
Eventually(func(g Gomega) {
|
|
res, err := tf.RunCommand(cmd)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-nodeport"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Verifies LoadBalancer Service", func() {
|
|
_, err := tf.DeployWorkload("loadbalancer.yaml", createcluster.KubeConfigFile, *arch)
|
|
Expect(err).NotTo(HaveOccurred(), "Loadbalancer manifest not deployed")
|
|
|
|
nodeExternalIP := tf.FetchNodeExternalIP(createcluster.KubeConfigFile)
|
|
cmd := "kubectl get service nginx-loadbalancer-svc --kubeconfig=" + createcluster.KubeConfigFile +
|
|
" --output jsonpath=\"{.spec.ports[0].port}\""
|
|
|
|
port, err := tf.RunCommand(cmd)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
for _, ip := range nodeExternalIP {
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l k8s-app=nginx-app-loadbalancer " +
|
|
"--field-selector=status.phase=Running --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-loadbalancer"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd = "curl -sL --insecure http://" + ip + ":" + port + "/name.html"
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-loadbalancer"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Verifies Ingress", func() {
|
|
_, err := tf.DeployWorkload("ingress.yaml", createcluster.KubeConfigFile, *arch)
|
|
Expect(err).NotTo(HaveOccurred(), "Ingress manifest not deployed")
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l k8s-app=nginx-app-ingress " +
|
|
"--field-selector=status.phase=Running --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-ingress"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
|
|
ingressIps, err := tf.FetchIngressIP(createcluster.KubeConfigFile)
|
|
Expect(err).NotTo(HaveOccurred(), "Ingress ip is not returned")
|
|
|
|
for _, ip := range ingressIps {
|
|
cmd := "curl -s --header host:foo1.bar.com" + " http://" + ip + "/name.html"
|
|
|
|
Eventually(func(g Gomega) {
|
|
res, err := tf.RunCommand(cmd)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-ingress"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Verifies Daemonset", func() {
|
|
_, err := tf.DeployWorkload("daemonset.yaml", createcluster.KubeConfigFile, *arch)
|
|
Expect(err).NotTo(HaveOccurred(), "Daemonset manifest not deployed")
|
|
|
|
nodes, _ := tf.ParseNodes(createcluster.KubeConfigFile, false)
|
|
pods, _ := tf.ParsePods(createcluster.KubeConfigFile, false)
|
|
|
|
Eventually(func(g Gomega) {
|
|
count := tf.CountOfStringInSlice("test-daemonset", pods)
|
|
g.Expect(len(nodes)).Should(Equal(count),
|
|
"Daemonset pod count does not match node count")
|
|
}, "420s", "10s").Should(Succeed())
|
|
})
|
|
|
|
It("Verifies Local Path Provisioner storage ", func() {
|
|
_, err := tf.DeployWorkload("local-path-provisioner.yaml", createcluster.KubeConfigFile, *arch)
|
|
Expect(err).NotTo(HaveOccurred(), "local-path-provisioner manifest not deployed")
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pvc local-path-pvc --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("local-path-pvc"))
|
|
g.Expect(res).Should(ContainSubstring("Bound"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pod volume-test --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("volume-test"))
|
|
g.Expect(res).Should(ContainSubstring("Running"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
cmd := "kubectl --kubeconfig=" + createcluster.KubeConfigFile + " exec volume-test -- sh -c 'echo local-path-test > /data/test'"
|
|
_, err = tf.RunCommand(cmd)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
cmd = "kubectl delete pod volume-test --kubeconfig=" + createcluster.KubeConfigFile
|
|
_, err = tf.RunCommand(cmd)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
_, err = tf.DeployWorkload("local-path-provisioner.yaml", createcluster.KubeConfigFile, *arch)
|
|
Expect(err).NotTo(HaveOccurred(), "local-path-provisioner manifest not deployed")
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l app=local-path-provisioner " +
|
|
"--field-selector=status.phase=Running -n kube-system --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("pod/local-path-provisioner"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pod volume-test --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("volume-test"))
|
|
g.Expect(res).Should(ContainSubstring("Running"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd = "kubectl exec volume-test --kubeconfig=" + createcluster.KubeConfigFile + " -- cat /data/test"
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("local-path-test"))
|
|
}, "180s", "2s").Should(Succeed())
|
|
})
|
|
|
|
It("Verifies dns access", func() {
|
|
_, err := tf.DeployWorkload("dnsutils.yaml", createcluster.KubeConfigFile, *arch)
|
|
Expect(err).NotTo(HaveOccurred(), "dnsutils manifest not deployed")
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods dnsutils --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, _ := tf.RunCommand(cmd)
|
|
|
|
g.Expect(res).Should(ContainSubstring("dnsutils"))
|
|
g.Expect(res).Should(ContainSubstring("Running"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl --kubeconfig=" + createcluster.KubeConfigFile +
|
|
" exec -t dnsutils -- nslookup kubernetes.default"
|
|
res, _ := tf.RunCommand(cmd)
|
|
|
|
g.Expect(res).Should(ContainSubstring("kubernetes.default.svc.cluster.local"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
})
|
|
|
|
It("Verify Cluster is upgraded", func() {
|
|
MIPs := strings.Split(createcluster.MasterIPs, ",")
|
|
|
|
for _, ip := range MIPs {
|
|
cmd := "sed -i \"s/|/| INSTALL_K3S_VERSION=" + *upgradeVersion + "/g\" /tmp/master_cmd"
|
|
Eventually(func(g Gomega) {
|
|
_, err := tf.RunCmdOnNode(cmd, ip, createcluster.AwsUser, createcluster.AccessKey)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
cmd = "sudo chmod u+x /tmp/master_cmd && sudo /tmp/master_cmd"
|
|
fmt.Println(cmd)
|
|
Eventually(func(g Gomega) {
|
|
_, err := tf.RunCmdOnNode(cmd, ip, createcluster.AwsUser, createcluster.AccessKey)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
}, "420s", "2s").Should(Succeed())
|
|
}
|
|
|
|
WIPs := strings.Split(createcluster.WorkerIPs, ",")
|
|
for _, ip := range WIPs {
|
|
cmd := "sed -i \"s/|/| INSTALL_K3S_VERSION=" + *upgradeVersion + "/g\" /tmp/agent_cmd"
|
|
Eventually(func(g Gomega) {
|
|
_, err := tf.RunCmdOnNode(cmd, ip, createcluster.AwsUser, createcluster.AccessKey)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
cmd = "sudo chmod u+x /tmp/agent_cmd && sudo /tmp/agent_cmd"
|
|
Eventually(func(g Gomega) {
|
|
_, err := tf.RunCmdOnNode(cmd, ip, createcluster.AwsUser, createcluster.AccessKey)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
}, "420s", "2s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Checks Node and Pod Status after upgrade", func() {
|
|
defer func() {
|
|
_, err := tf.ParseNodes(createcluster.KubeConfigFile, true)
|
|
if err != nil {
|
|
fmt.Println("Error retrieving nodes: ", err)
|
|
}
|
|
_, err = tf.ParsePods(createcluster.KubeConfigFile, true)
|
|
if err != nil {
|
|
fmt.Println("Error retrieving pods: ", err)
|
|
}
|
|
}()
|
|
|
|
fmt.Printf("\nFetching node status\n")
|
|
|
|
Eventually(func(g Gomega) {
|
|
expectedNodeCount := createcluster.NumServers + createcluster.NumWorkers
|
|
nodes, err := tf.ParseNodes(createcluster.KubeConfigFile, false)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(len(nodes)).To(Equal(expectedNodeCount),
|
|
"Number of nodes should match the spec")
|
|
|
|
for _, node := range nodes {
|
|
g.Expect(node.Status).Should(Equal("Ready"),
|
|
"Nodes should all be in Ready state")
|
|
g.Expect(node.Version).Should(ContainSubstring(*upgradeVersion))
|
|
}
|
|
}, "420s", "5s").Should(Succeed())
|
|
|
|
fmt.Printf("\nFetching pod status\n")
|
|
Eventually(func(g Gomega) {
|
|
pods, err := tf.ParsePods(createcluster.KubeConfigFile, false)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
|
|
for _, pod := range pods {
|
|
if strings.Contains(pod.Name, "helm-install") {
|
|
g.Expect(pod.Status).Should(Equal("Completed"), pod.Name)
|
|
} else {
|
|
g.Expect(pod.Status).Should(Equal("Running"), pod.Name)
|
|
}
|
|
}
|
|
}, "600s", "5s").Should(Succeed())
|
|
})
|
|
|
|
It("Verifies ClusterIP Service after upgrade", func() {
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l k8s-app=nginx-app-clusterip " +
|
|
"--field-selector=status.phase=Running --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-clusterip"))
|
|
}, "420s", "5s").Should(Succeed())
|
|
|
|
clusterip, _ := tf.FetchClusterIP(createcluster.KubeConfigFile, "nginx-clusterip-svc")
|
|
cmd := "curl -sL --insecure http://" + clusterip + "/name.html"
|
|
nodeExternalIP := tf.FetchNodeExternalIP(createcluster.KubeConfigFile)
|
|
|
|
for _, ip := range nodeExternalIP {
|
|
Eventually(func(g Gomega) {
|
|
res, err := tf.RunCmdOnNode(cmd, ip, createcluster.AwsUser, createcluster.AccessKey)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-clusterip"))
|
|
|
|
}, "420s", "10s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Verifies NodePort Service after upgrade", func() {
|
|
nodeExternalIP := tf.FetchNodeExternalIP(createcluster.KubeConfigFile)
|
|
cmd := "kubectl get service nginx-nodeport-svc --kubeconfig=" + createcluster.KubeConfigFile +
|
|
" --output jsonpath=\"{.spec.ports[0].nodePort}\""
|
|
|
|
nodeport, err := tf.RunCommand(cmd)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
for _, ip := range nodeExternalIP {
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l k8s-app=nginx-app-nodeport " +
|
|
"--field-selector=status.phase=Running --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-nodeport"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
|
|
cmd = "curl -L --insecure http://" + ip + ":" + nodeport + "/name.html"
|
|
Eventually(func(g Gomega) {
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-nodeport"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Verifies LoadBalancer Service after upgrade", func() {
|
|
nodeExternalIP := tf.FetchNodeExternalIP(createcluster.KubeConfigFile)
|
|
cmd := "kubectl get service nginx-loadbalancer-svc --kubeconfig=" +
|
|
createcluster.KubeConfigFile + " --output jsonpath=\"{.spec.ports[0].port}\""
|
|
port, err := tf.RunCommand(cmd)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
for _, ip := range nodeExternalIP {
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l k8s-app=nginx-app-loadbalancer " +
|
|
"--field-selector=status.phase=Running --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-loadbalancer"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd = "curl -sL --insecure http://" + ip + ":" + port + "/name.html"
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-loadbalancer"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Verifies Ingress after upgrade", func() {
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l k8s-app=nginx-app-ingress " +
|
|
"--field-selector=status.phase=Running --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-ingress"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
|
|
ingressIps, err := tf.FetchIngressIP(createcluster.KubeConfigFile)
|
|
Expect(err).NotTo(HaveOccurred(), "Ingress ip is not returned")
|
|
|
|
for _, ip := range ingressIps {
|
|
cmd := "curl -s --header host:foo1.bar.com" + " http://" + ip + "/name.html"
|
|
Eventually(func(g Gomega) {
|
|
res, err := tf.RunCommand(cmd)
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("test-ingress"))
|
|
}, "240s", "5s").Should(Succeed())
|
|
}
|
|
})
|
|
|
|
It("Verifies Daemonset after upgrade", func() {
|
|
nodes, _ := tf.ParseNodes(createcluster.KubeConfigFile, false)
|
|
pods, _ := tf.ParsePods(createcluster.KubeConfigFile, false)
|
|
|
|
Eventually(func(g Gomega) {
|
|
count := tf.CountOfStringInSlice("test-daemonset", pods)
|
|
g.Expect(len(nodes)).Should(Equal(count),
|
|
"Daemonset pod count does not match node count")
|
|
}, "420s", "10s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
for _, pod := range pods {
|
|
if strings.Contains(pod.Name, "test-daemonset") {
|
|
g.Expect(pod.Status).Should(Equal("Running"), pod.Name)
|
|
}
|
|
}
|
|
}, "240s", "5s").Should(Succeed())
|
|
})
|
|
|
|
It("Validating Local Path Provisioner storage after upgrade", func() {
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods -o=name -l app=local-path-provisioner" +
|
|
" --field-selector=status.phase=Running -n kube-system --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("pod/local-path-provisioner"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pod volume-test --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("volume-test"))
|
|
g.Expect(res).Should(ContainSubstring("Running"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl exec volume-test --kubeconfig=" + createcluster.KubeConfigFile + " -- cat /data/test"
|
|
res, err := tf.RunCommand(cmd)
|
|
|
|
g.Expect(err).NotTo(HaveOccurred())
|
|
g.Expect(res).Should(ContainSubstring("local-path-test"))
|
|
}, "180s", "2s").Should(Succeed())
|
|
})
|
|
|
|
It("Verifies dns access after upgrade", func() {
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl get pods dnsutils --kubeconfig=" + createcluster.KubeConfigFile
|
|
res, _ := tf.RunCommand(cmd)
|
|
|
|
g.Expect(res).Should(ContainSubstring("dnsutils"))
|
|
g.Expect(res).Should(ContainSubstring("Running"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
|
|
Eventually(func(g Gomega) {
|
|
cmd := "kubectl --kubeconfig=" + createcluster.KubeConfigFile +
|
|
" exec -t dnsutils -- nslookup kubernetes.default"
|
|
res, _ := tf.RunCommand(cmd)
|
|
|
|
g.Expect(res).Should(ContainSubstring("kubernetes.default.svc.cluster.local"))
|
|
}, "420s", "2s").Should(Succeed())
|
|
})
|
|
})
|
|
})
|
|
|
|
var _ = BeforeEach(func() {
|
|
failed = failed || CurrentSpecReport().Failed()
|
|
if *destroy {
|
|
Skip("Cluster is being Deleted")
|
|
}
|
|
})
|
|
|
|
var _ = AfterEach(func() {
|
|
if CurrentSpecReport().Failed() {
|
|
fmt.Printf("\nFAILED! %s\n", CurrentSpecReport().FullText())
|
|
} else {
|
|
fmt.Printf("\nPASSED! %s\n", CurrentSpecReport().FullText())
|
|
}
|
|
})
|
|
|
|
var _ = AfterSuite(func() {
|
|
if *destroy {
|
|
status, err := createcluster.BuildCluster(&testing.T{}, *destroy)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(status).To(Equal("cluster destroyed"))
|
|
}
|
|
})
|