diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-04 11:44:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-04 11:44:06 -0400 |
commit | b1e9ea38e5a680afb9294cb8a451311991d94765 (patch) | |
tree | 52479da236329c5a6dcda0a399f73711a44890f9 /test | |
parent | 534405caa90bfd1a7c95fa2c4922468be274c685 (diff) | |
parent | ccd576504e7fb578add8f5390fa8ceb41dd1d9d4 (diff) | |
download | podman-b1e9ea38e5a680afb9294cb8a451311991d94765.tar.gz podman-b1e9ea38e5a680afb9294cb8a451311991d94765.tar.bz2 podman-b1e9ea38e5a680afb9294cb8a451311991d94765.zip |
Merge pull request #14060 from nicrowe00/13781
play kube default log driver
Diffstat (limited to 'test')
-rw-r--r-- | test/system/700-play.bats | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/system/700-play.bats b/test/system/700-play.bats index b0624cbf2..7988b26a4 100644 --- a/test/system/700-play.bats +++ b/test/system/700-play.bats @@ -278,3 +278,20 @@ status: {} run_podman 125 play kube - < $PODMAN_TMPDIR/test.yaml assert "$output" =~ "invalid annotation \"test\"=\"$RANDOMSTRING\"" "Expected to fail with annotation length greater than 63" } + +@test "podman play kube - default log driver" { + TESTDIR=$PODMAN_TMPDIR/testdir + mkdir -p $TESTDIR + echo "$testYaml" | sed "s|TESTDIR|${TESTDIR}|g" > $PODMAN_TMPDIR/test.yaml + # Get the default log driver + run_podman info --format "{{.Host.LogDriver}}" + default_driver=$output + + # Make sure that the default log driver is used + run_podman play kube $PODMAN_TMPDIR/test.yaml + run_podman inspect --format "{{.HostConfig.LogConfig.Type}}" test_pod-test + is "$output" "$default_driver" "play kube uses default log driver" + + run_podman stop -a -t 0 + run_podman pod rm -t 0 -f test_pod +} |