Skip to content

Commit

Permalink
Add default ulimit test for gen kube
Browse files Browse the repository at this point in the history
Add a test for generate kube to verify that the ulimit
annotation is not set for the default case when the user
doesn't set any ulimits.

Signed-off-by: Urvashi Mohnani <[email protected]>
  • Loading branch information
umohnani8 committed Jun 2, 2023
1 parent 57797d8 commit d68121a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions test/e2e/generate_kube_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1404,6 +1404,25 @@ USER test1`
Expect(pod.Spec.Volumes[0].Secret).To(BeNil())
})

It("podman kube generate with default ulimits", func() {
ctrName := "ulimit-ctr"
session := podmanTest.Podman([]string{"run", "-d", "--name", ctrName, ALPINE, "sleep", "1000"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))

outputFile := filepath.Join(podmanTest.RunRoot, "pod.yaml")
kube := podmanTest.Podman([]string{"kube", "generate", ctrName, "-f", outputFile})
kube.WaitWithDefaultTimeout()
Expect(kube).Should(Exit(0))

b, err := os.ReadFile(outputFile)
Expect(err).ShouldNot(HaveOccurred())
pod := new(v1.Pod)
err = yaml.Unmarshal(b, pod)
Expect(err).ToNot(HaveOccurred())
Expect(pod.Annotations).To(Not(HaveKey(define.UlimitAnnotation)))
})

It("podman generate & play kube with --ulimit set", func() {
ctrName := "ulimit-ctr"
ctrNameInKubePod := ctrName + "-pod-" + ctrName
Expand Down

0 comments on commit d68121a

Please sign in to comment.