diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-09-24 18:38:52 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-09-27 07:25:28 -0400 |
commit | 1b5853e64794403d80c4d339c97b61dd63dd093a (patch) | |
tree | dbf5862bc0af6adb9b6c4f298a6750c23fe66125 /test/e2e/run_apparmor_test.go | |
parent | 03d01abec6d028e9d5f60615b0451e42d0611d1d (diff) | |
download | podman-1b5853e64794403d80c4d339c97b61dd63dd093a.tar.gz podman-1b5853e64794403d80c4d339c97b61dd63dd093a.tar.bz2 podman-1b5853e64794403d80c4d339c97b61dd63dd093a.zip |
Properly handle podman run --pull command
Currently the --pull missing|always|never is ignored
This PR implements this for local API. For remote we
need to default to pullpolicy specified in the containers.conf
file.
Also fixed an issue when images were matching other images names
based on prefix, causing images to always be pulled.
I had named an image myfedora and when ever I pulled fedora, the system
thought that it there were two images named fedora since it was checking
for the name fedora as well as the prefix fedora. I changed it to check
for fedora and the prefix /fedora, to prefent failures like I had.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/run_apparmor_test.go')
-rw-r--r-- | test/e2e/run_apparmor_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_apparmor_test.go b/test/e2e/run_apparmor_test.go index 7d522a752..0faf0b496 100644 --- a/test/e2e/run_apparmor_test.go +++ b/test/e2e/run_apparmor_test.go @@ -106,7 +106,7 @@ profile aa-test-profile flags=(attach_disconnected,mediate_deleted) { parse := SystemExec("apparmor_parser", []string{"-Kr", aaFile}) Expect(parse.ExitCode()).To(Equal(0)) - session := podmanTest.Podman([]string{"create", "--security-opt", "apparmor=aa-test-profile", "ls"}) + session := podmanTest.Podman([]string{"create", "--security-opt", "apparmor=aa-test-profile", ALPINE, "ls"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) |