aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-03-10 14:36:53 -0500
committerGitHub <noreply@github.com>2022-03-10 14:36:53 -0500
commit7ba81ead38d0c4fb2e583224257a0497789552fc (patch)
treef7e546f59992980f64b75857a2e5aa0b4751a62b /test
parenta5e327941423983529b771a03691dc2fe2390e0f (diff)
parentfeaa1a134a4fd0a7d25bab485708a201321bfb56 (diff)
downloadpodman-7ba81ead38d0c4fb2e583224257a0497789552fc.tar.gz
podman-7ba81ead38d0c4fb2e583224257a0497789552fc.tar.bz2
podman-7ba81ead38d0c4fb2e583224257a0497789552fc.zip
Merge pull request #13445 from rhatdan/annotation
Add podman play kube --annotation
Diffstat (limited to 'test')
-rw-r--r--test/system/700-play.bats13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/system/700-play.bats b/test/system/700-play.bats
index 07c5d124f..8af4cd25b 100644
--- a/test/system/700-play.bats
+++ b/test/system/700-play.bats
@@ -220,3 +220,16 @@ _EOF
run_podman pod rm -t 0 -f test_pod
run_podman rmi -f userimage:latest
}
+
+@test "podman play --annotation" {
+ TESTDIR=$PODMAN_TMPDIR/testdir
+ RANDOMSTRING=$(random_string 15)
+ mkdir -p $TESTDIR
+ echo "$testYaml" | sed "s|TESTDIR|${TESTDIR}|g" > $PODMAN_TMPDIR/test.yaml
+ run_podman play kube --annotation "name=$RANDOMSTRING" $PODMAN_TMPDIR/test.yaml
+ run_podman inspect --format "{{ .Config.Annotations }}" test_pod-test
+ is "$output" ".*name:$RANDOMSTRING" "Annotation should be added to pod"
+
+ run_podman stop -a -t 0
+ run_podman pod rm -t 0 -f test_pod
+}