diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-17 22:40:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 22:40:28 +0100 |
commit | 770b03a50cbffbf1ad1d40a8c9ea72860727acea (patch) | |
tree | a9f3704b068fc111ed51c9aeadd7b5392c11432e /test/e2e/play_kube_test.go | |
parent | 0886fabbc233261008cc38ee07dea238bcf4de86 (diff) | |
parent | 7ab936eafad504fd6a0b7bfec3f6dafe322ad09d (diff) | |
download | podman-770b03a50cbffbf1ad1d40a8c9ea72860727acea.tar.gz podman-770b03a50cbffbf1ad1d40a8c9ea72860727acea.tar.bz2 podman-770b03a50cbffbf1ad1d40a8c9ea72860727acea.zip |
Merge pull request #8363 from AlbanBedel/play-kube-create-only
Add an option to control if play kube should start the pod
Diffstat (limited to 'test/e2e/play_kube_test.go')
-rw-r--r-- | test/e2e/play_kube_test.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/e2e/play_kube_test.go b/test/e2e/play_kube_test.go index 7ae474c76..92e4544f9 100644 --- a/test/e2e/play_kube_test.go +++ b/test/e2e/play_kube_test.go @@ -1482,4 +1482,19 @@ MemoryReservation: {{ .HostConfig.MemoryReservation }}`}) Expect(inspect.ExitCode()).To(Equal(0)) Expect(inspect.OutputToString()).To(ContainSubstring("journald")) }) + + It("podman play kube test only creating the containers", func() { + pod := getPod() + err := generateKubeYaml("pod", pod, kubeYaml) + Expect(err).To(BeNil()) + + kube := podmanTest.Podman([]string{"play", "kube", "--start=false", kubeYaml}) + kube.WaitWithDefaultTimeout() + Expect(kube.ExitCode()).To(Equal(0)) + + inspect := podmanTest.Podman([]string{"inspect", getCtrNameInPod(pod), "--format", "{{ .State.Running }}"}) + inspect.WaitWithDefaultTimeout() + Expect(inspect.ExitCode()).To(Equal(0)) + Expect(inspect.OutputToString()).To(Equal("false")) + }) }) |