diff options
author | baude <bbaude@redhat.com> | 2020-11-05 09:07:03 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2020-11-10 07:55:24 -0600 |
commit | 72ec8b0aa2d599220b24749c1f4c7a9c42667023 (patch) | |
tree | 18bbe29c845250d3c922b7c4be0d82bc0d9b1af4 /test | |
parent | da95fb4226c82694af19610578d9c14a6aa964f2 (diff) | |
download | podman-72ec8b0aa2d599220b24749c1f4c7a9c42667023.tar.gz podman-72ec8b0aa2d599220b24749c1f4c7a9c42667023.tar.bz2 podman-72ec8b0aa2d599220b24749c1f4c7a9c42667023.zip |
migrate play kube to spec gen
we need to migrate play kube away from using the old container creation
method. the new approach is specgen and this aligns play kube with
container creation in the rest of podman.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/play_kube_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/play_kube_test.go b/test/e2e/play_kube_test.go index 6db5de9d0..7ae474c76 100644 --- a/test/e2e/play_kube_test.go +++ b/test/e2e/play_kube_test.go @@ -959,7 +959,7 @@ var _ = Describe("Podman play kube", func() { kube.WaitWithDefaultTimeout() Expect(kube.ExitCode()).To(Equal(0)) - inspect := podmanTest.Podman([]string{"inspect", getCtrNameInPod(pod), "--format", "{{ .HostConfig.ExtraHosts }}"}) + inspect := podmanTest.Podman([]string{"inspect", pod.Name, "--format", "{{ .InfraConfig.HostAdd}}"}) inspect.WaitWithDefaultTimeout() Expect(inspect.ExitCode()).To(Equal(0)) Expect(inspect.OutputToString()). |