diff options
author | Peter Hunt <pehunt@redhat.com> | 2019-11-15 15:49:42 -0500 |
---|---|---|
committer | Peter Hunt <pehunt@redhat.com> | 2019-11-18 10:11:35 -0500 |
commit | 8d585ccfa89e4f4e1eabf652528d3f7306af3268 (patch) | |
tree | b2cf161144a7d38dd07c7806ac8c0d48bfe3cf28 /test/e2e/run_test.go | |
parent | db32ed1ae8374aac9c4058607ad9cf294505c952 (diff) | |
download | podman-8d585ccfa89e4f4e1eabf652528d3f7306af3268.tar.gz podman-8d585ccfa89e4f4e1eabf652528d3f7306af3268.tar.bz2 podman-8d585ccfa89e4f4e1eabf652528d3f7306af3268.zip |
play kube: handle seccomp labels
Add handling of seccomp annotations to play kube at both container and pod levels.
also add a test
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r-- | test/e2e/run_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index 7fc85c9ce..72547ea00 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -160,9 +160,9 @@ var _ = Describe("Podman run", func() { }) It("podman run seccomp test", func() { - jsonFile := filepath.Join(podmanTest.TempDir, "seccomp.json") + in := []byte(`{"defaultAction":"SCMP_ACT_ALLOW","syscalls":[{"name":"getcwd","action":"SCMP_ACT_ERRNO"}]}`) - err := WriteJsonFile(in, jsonFile) + jsonFile, err := podmanTest.CreateSeccompJson(in) if err != nil { fmt.Println(err) Skip("Failed to prepare seccomp.json for test.") |