diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-11-10 11:12:06 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-11-10 12:59:42 +0100 |
commit | df066643638d9763d186fea2e6a81633244d2f88 (patch) | |
tree | c0bba498c1c55dbce009393ade2e862946942d38 /test/system/200-pod.bats | |
parent | 5437568fcda04c2999b5fa9aad4dd07f2d3cfd67 (diff) | |
download | podman-df066643638d9763d186fea2e6a81633244d2f88.tar.gz podman-df066643638d9763d186fea2e6a81633244d2f88.tar.bz2 podman-df066643638d9763d186fea2e6a81633244d2f88.zip |
pod create: read infra image from containers.conf
Fix a bug where pods would be created with the hard-coded default infra
image instead of the custom one from containers.conf. Add a simple
regression test.
Fixes: #12245
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test/system/200-pod.bats')
-rw-r--r-- | test/system/200-pod.bats | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/system/200-pod.bats b/test/system/200-pod.bats index 09a419914..60cfbc9dd 100644 --- a/test/system/200-pod.bats +++ b/test/system/200-pod.bats @@ -60,6 +60,25 @@ function teardown() { run_podman pod rm -f -t 0 $podid } + +@test "podman pod create - custom infra image" { + image="i.do/not/exist:image" + + tmpdir=$PODMAN_TMPDIR/pod-test + run mkdir -p $tmpdir + containersconf=$tmpdir/containers.conf + cat >$containersconf <<EOF +[engine] +infra_image="$image" +EOF + + run_podman 125 pod create --infra-image $image + is "$output" ".*initializing source docker://$image:.*" + + CONTAINERS_CONF=$containersconf run_podman 125 pod create + is "$output" ".*initializing source docker://$image:.*" +} + function rm_podman_pause_image() { run_podman version --format "{{.Server.Version}}-{{.Server.Built}}" run_podman rmi -f "localhost/podman-pause:$output" |