summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorNiall Crowe <nicrowe@redhat.com>2022-07-18 14:20:35 +0100
committerNiall Crowe <nicrowe@redhat.com>2022-08-02 16:27:01 +0100
commit1249cbb75f50182f19e5976fa149386672451f2a (patch)
tree1a69e285813ea6d26c7da06d4e12230826ddb19e /test/system
parentc09457e34a429622475e27fe68e17effe47fe0c3 (diff)
downloadpodman-1249cbb75f50182f19e5976fa149386672451f2a.tar.gz
podman-1249cbb75f50182f19e5976fa149386672451f2a.tar.bz2
podman-1249cbb75f50182f19e5976fa149386672451f2a.zip
add "podman kube down" command
The "podman kube down" reads in a structured file of Kubernetes YAML and removes pods based on the Kubernetes kind described in the YAML, similiar to "podman play kube --down". Users will still be able to use "podman play kube --down" and "podman kube play --down" to perform the same function. Signed-off-by: Niall Crowe <nicrowe@redhat.com>
Diffstat (limited to 'test/system')
-rw-r--r--test/system/700-play.bats15
1 files changed, 10 insertions, 5 deletions
diff --git a/test/system/700-play.bats b/test/system/700-play.bats
index 72602a9e6..e1955cfd1 100644
--- a/test/system/700-play.bats
+++ b/test/system/700-play.bats
@@ -182,8 +182,11 @@ EOF
run_podman container inspect --format "{{.HostConfig.NetworkMode}}" $infraID
is "$output" "none" "network mode none is set for the container"
- run_podman stop -a -t 0
- run_podman pod rm -t 0 -f test_pod
+ run_podman kube down - < $PODMAN_TMPDIR/test.yaml
+ run_podman 125 inspect test_pod-test
+ is "$output" ".*Error: inspecting object: no such object: \"test_pod-test\""
+ run_podman pod rm -a
+ run_podman rm -a
}
@test "podman play with user from image" {
@@ -325,7 +328,6 @@ spec:
- name: TERM
value: xterm
- name: container
-
value: podman
image: quay.io/libpod/userimage
name: test
@@ -353,6 +355,9 @@ status: {}
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
+ run_podman kube down $PODMAN_TMPDIR/test.yaml
+ run_podman 125 inspect test_pod-test
+ is "$output" ".*Error: inspecting object: no such object: \"test_pod-test\""
+ run_podman pod rm -a
+ run_podman rm -a
}