summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-10-27 10:22:56 +0000
committerGitHub <noreply@github.com>2021-10-27 10:22:56 +0000
commit979b6312286b4bd993d7be0413e1e95c4a0bad56 (patch)
tree0da95f96aa774c035e97d5080f91a563c1f0ec1a /test/e2e
parent9fbf2a40f19e1aea97e46e6e7c7992996f8ca827 (diff)
parent75f478c08b82a9d6a99628bee5698a85610f863c (diff)
downloadpodman-979b6312286b4bd993d7be0413e1e95c4a0bad56.tar.gz
podman-979b6312286b4bd993d7be0413e1e95c4a0bad56.tar.bz2
podman-979b6312286b4bd993d7be0413e1e95c4a0bad56.zip
Merge pull request #11956 from vrothberg/pause
remove need to download pause image
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/play_kube_test.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/e2e/play_kube_test.go b/test/e2e/play_kube_test.go
index d5b913743..b0b927445 100644
--- a/test/e2e/play_kube_test.go
+++ b/test/e2e/play_kube_test.go
@@ -11,7 +11,6 @@ import (
"text/template"
"time"
- "github.com/containers/common/pkg/config"
"github.com/containers/podman/v3/libpod/define"
"github.com/containers/podman/v3/pkg/util"
. "github.com/containers/podman/v3/test/utils"
@@ -1120,24 +1119,6 @@ var _ = Describe("Podman play kube", func() {
Expect(label).To(ContainSubstring("unconfined_u:system_r:spc_t:s0"))
})
- It("podman play kube should use default infra_image", func() {
- err := writeYaml(checkInfraImagePodYaml, kubeYaml)
- Expect(err).To(BeNil())
-
- kube := podmanTest.Podman([]string{"play", "kube", kubeYaml})
- kube.WaitWithDefaultTimeout()
- Expect(kube).Should(Exit(0))
-
- podInspect := podmanTest.Podman([]string{"inspect", "check-infra-image", "--format", "{{ .InfraContainerID }}"})
- podInspect.WaitWithDefaultTimeout()
- infraContainerID := podInspect.OutputToString()
-
- conInspect := podmanTest.Podman([]string{"inspect", infraContainerID, "--format", "{{ .ImageName }}"})
- conInspect.WaitWithDefaultTimeout()
- infraContainerImage := conInspect.OutputToString()
- Expect(infraContainerImage).To(Equal(config.DefaultInfraImage))
- })
-
It("podman play kube --no-host", func() {
err := writeYaml(checkInfraImagePodYaml, kubeYaml)
Expect(err).To(BeNil())