diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-04-26 16:53:08 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-04-26 18:12:27 +0200 |
commit | 4f8ece76fff31d31570af56e0ec4a4092e015b33 (patch) | |
tree | 3cc5c3b138028cf1054f737235e89f5a66b7624a /test/e2e | |
parent | 51fbf3da9ee34a8143df5baeda6032c1747446d2 (diff) | |
download | podman-4f8ece76fff31d31570af56e0ec4a4092e015b33.tar.gz podman-4f8ece76fff31d31570af56e0ec4a4092e015b33.tar.bz2 podman-4f8ece76fff31d31570af56e0ec4a4092e015b33.zip |
play kube: do not skip containers by name
We should not exclude contianers by name. If a users has a container
with the name "inf" it is currently skipped. This is wrong. The k8s yaml
does not contain infra containers so we do not have to skip them.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'test/e2e')
-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 4dd05c755..6d89a844e 100644 --- a/test/e2e/play_kube_test.go +++ b/test/e2e/play_kube_test.go @@ -2995,7 +2995,7 @@ invalid kube kind It("podman play kube with auto update annotations for all containers", func() { ctr01Name := "ctr01" - ctr02Name := "ctr02" + ctr02Name := "infra" podName := "foo" autoUpdateRegistry := "io.containers.autoupdate" autoUpdateRegistryValue := "registry" |