summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-03-09 16:19:59 -0500
committerGitHub <noreply@github.com>2022-03-09 16:19:59 -0500
commitacfcecf2ae41528d1d7ecd43d37d8fd554f587bc (patch)
treeb92171a480a5d4d155f311a5e0a815efb4330ddc /test/system
parent4e21acd7b81865300266c9e9916a49454d72a6c7 (diff)
parent675d775eb54f1614a542dfcbbc5a4aa857cc0db0 (diff)
downloadpodman-acfcecf2ae41528d1d7ecd43d37d8fd554f587bc.tar.gz
podman-acfcecf2ae41528d1d7ecd43d37d8fd554f587bc.tar.bz2
podman-acfcecf2ae41528d1d7ecd43d37d8fd554f587bc.zip
Merge pull request #12913 from rhatdan/kube
Add --context-dir option to podman play kube
Diffstat (limited to 'test/system')
-rw-r--r--test/system/700-play.bats52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/system/700-play.bats b/test/system/700-play.bats
index 88c7cad87..07c5d124f 100644
--- a/test/system/700-play.bats
+++ b/test/system/700-play.bats
@@ -168,3 +168,55 @@ _EOF
run_podman pod rm -t 0 -f test_pod
run_podman rmi -f userimage:latest
}
+
+@test "podman play --build --context-dir" {
+ skip_if_remote "--build is not supported in context remote"
+ testUserYaml="
+apiVersion: v1
+kind: Pod
+metadata:
+ labels:
+ app: test
+ name: test_pod
+spec:
+ containers:
+ - command:
+ - id
+ env:
+ - name: PATH
+ value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ - name: TERM
+ value: xterm
+ - name: container
+ value: podman
+ image: quay.io/libpod/userimage
+ name: test
+ resources: {}
+status: {}
+"
+
+mkdir -p $PODMAN_TMPDIR/userimage
+cat > $PODMAN_TMPDIR/userimage/Containerfile << _EOF
+from $IMAGE
+USER bin
+_EOF
+
+ echo "$testUserYaml" > $PODMAN_TMPDIR/test.yaml
+ run_podman 125 play kube --build --start=false $PODMAN_TMPDIR/test.yaml
+ run_podman play kube --replace --context-dir=$PODMAN_TMPDIR --build --start=false $PODMAN_TMPDIR/test.yaml
+ run_podman inspect --format "{{ .Config.User }}" test_pod-test
+ is "$output" bin "expect container within pod to run as the bin user"
+
+ run_podman stop -a -t 0
+ run_podman pod rm -t 0 -f test_pod
+ run_podman rmi -f userimage:latest
+
+ cd $PODMAN_TMPDIR
+ run_podman play kube --replace --build --start=false $PODMAN_TMPDIR/test.yaml
+ run_podman inspect --format "{{ .Config.User }}" test_pod-test
+ is "$output" bin "expect container within pod to run as the bin user"
+
+ run_podman stop -a -t 0
+ run_podman pod rm -t 0 -f test_pod
+ run_podman rmi -f userimage:latest
+}