mirror of
https://github.com/k3s-io/k3s.git
synced 2026-05-28 04:34:19 -04:00
* Inclusive naming proposal (issue: #12110, Orlin Vasiliev) Basic renaming from 'master' to 'main' as primary branch according to https://github.com/cncf/foundation/blob/main/code-of-conduct.md#our-standards Signed-off-by: Andrea Benini <andreabenini@gmail.com> Signed-off-by: Derek Nola <derek.nola@suse.com> * Additional replacement of master with main in E2E testing, Github Action workflows Signed-off-by: Derek Nola <derek.nola@suse.com> --------- Signed-off-by: Andrea Benini <andreabenini@gmail.com> Signed-off-by: Derek Nola <derek.nola@suse.com> Co-authored-by: Derek Nola <derek.nola@suse.com>
118 lines
3.4 KiB
Go
118 lines
3.4 KiB
Go
package rotateca
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/k3s-io/k3s/tests"
|
|
"github.com/k3s-io/k3s/tests/e2e"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
// Valid nodeOS: bento/ubuntu-24.04, opensuse/Leap-15.6.x86_64
|
|
var nodeOS = flag.String("nodeOS", "bento/ubuntu-24.04", "VM operating system")
|
|
var serverCount = flag.Int("serverCount", 3, "number of server nodes")
|
|
var agentCount = flag.Int("agentCount", 1, "number of agent nodes")
|
|
var ci = flag.Bool("ci", false, "running on CI")
|
|
var local = flag.Bool("local", false, "deploy a locally built K3s binary")
|
|
|
|
// Environment Variables Info:
|
|
// E2E_RELEASE_VERSION=v1.23.1+k3s2 or nil for latest commit from main
|
|
|
|
func Test_E2ECustomCARotation(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
flag.Parse()
|
|
suiteConfig, reporterConfig := GinkgoConfiguration()
|
|
RunSpecs(t, "Custom Certificate Rotation Test Suite", suiteConfig, reporterConfig)
|
|
}
|
|
|
|
var tc *e2e.TestConfig
|
|
|
|
var _ = ReportAfterEach(e2e.GenReport)
|
|
|
|
var _ = Describe("Verify Custom CA Rotation", Ordered, func() {
|
|
Context("Custom CA is rotated:", func() {
|
|
It("Starts up with no issues", func() {
|
|
var err error
|
|
if *local {
|
|
tc, err = e2e.CreateLocalCluster(*nodeOS, *serverCount, *agentCount)
|
|
} else {
|
|
tc, err = e2e.CreateCluster(*nodeOS, *serverCount, *agentCount)
|
|
}
|
|
Expect(err).NotTo(HaveOccurred(), e2e.GetVagrantLog(err))
|
|
By("CLUSTER CONFIG")
|
|
By("OS: " + *nodeOS)
|
|
By(tc.Status())
|
|
|
|
})
|
|
|
|
It("Checks node and pod status", func() {
|
|
By("Fetching Nodes status")
|
|
Eventually(func() error {
|
|
return tests.NodesReady(tc.KubeconfigFile, e2e.VagrantSlice(tc.AllNodes()))
|
|
}, "620s", "5s").Should(Succeed())
|
|
e2e.DumpNodes(tc.KubeconfigFile)
|
|
|
|
Eventually(func() error {
|
|
return tests.AllPodsUp(tc.KubeconfigFile, "kube-system")
|
|
}, "620s", "5s").Should(Succeed())
|
|
e2e.DumpPods(tc.KubeconfigFile)
|
|
})
|
|
|
|
It("Generates New CA Certificates", func() {
|
|
cmds := []string{
|
|
"mkdir -p /opt/rancher/k3s/server",
|
|
"cp -r /var/lib/rancher/k3s/server/tls /opt/rancher/k3s/server",
|
|
"DATA_DIR=/opt/rancher/k3s /tmp/generate-custom-ca-certs.sh",
|
|
}
|
|
for _, cmd := range cmds {
|
|
_, err := tc.Servers[0].RunCmdOnNode(cmd)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
}
|
|
})
|
|
|
|
It("Rotates CA Certificates", func() {
|
|
cmd := "k3s certificate rotate-ca --path=/opt/rancher/k3s/server"
|
|
_, err := tc.Servers[0].RunCmdOnNode(cmd)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
})
|
|
|
|
It("Restarts K3s servers", func() {
|
|
Expect(e2e.RestartCluster(tc.Servers)).To(Succeed())
|
|
})
|
|
|
|
It("Restarts K3s agents", func() {
|
|
Expect(e2e.RestartCluster(tc.Agents)).To(Succeed())
|
|
})
|
|
|
|
It("Checks node and pod status", func() {
|
|
Eventually(func() error {
|
|
return tests.NodesReady(tc.KubeconfigFile, e2e.VagrantSlice(tc.AllNodes()))
|
|
}, "360s", "5s").Should(Succeed())
|
|
|
|
Eventually(func() error {
|
|
return tests.AllPodsUp(tc.KubeconfigFile, "kube-system")
|
|
}, "420s", "5s").Should(Succeed())
|
|
e2e.DumpPods(tc.KubeconfigFile)
|
|
})
|
|
})
|
|
})
|
|
|
|
var failed bool
|
|
var _ = AfterEach(func() {
|
|
failed = failed || CurrentSpecReport().Failed()
|
|
})
|
|
|
|
var _ = AfterSuite(func() {
|
|
if failed {
|
|
AddReportEntry("journald-logs", e2e.TailJournalLogs(1000, tc.AllNodes()))
|
|
} else {
|
|
Expect(e2e.GetCoverageReport(tc.AllNodes())).To(Succeed())
|
|
}
|
|
if !failed || *ci {
|
|
Expect(e2e.DestroyCluster()).To(Succeed())
|
|
Expect(os.Remove(tc.KubeconfigFile)).To(Succeed())
|
|
}
|
|
})
|