mirror of
https://github.com/containers/podman.git
synced 2025-10-13 01:06:10 +08:00
Pass on securityOpts from podInfraContainer to container added to pod.
This is an incomplete fix, as it would be best for the libpod library to be in charge of coordinating the container's dependencies on the infra container. A TODO was left as such. UTS is a special case, because the docker library that namespace handling is based off of doesn't recognize a UTS based on another container as valid, despite the library being able to handle it correctly. Thus, it is left in the old way. Signed-off-by: haircommander <pehunt@redhat.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #1347 Approved by: mheon
This commit is contained in:

committed by
Atomic Bot

parent
123de3087e
commit
d9580ec62b
@ -235,10 +235,10 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run with cidfile", func() {
|
||||
session := podmanTest.Podman([]string{"run", "--cidfile", "/tmp/cidfile", ALPINE, "ls"})
|
||||
session := podmanTest.Podman([]string{"run", "--cidfile", tempdir + "cidfile", ALPINE, "ls"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
err := os.Remove("/tmp/cidfile")
|
||||
err := os.Remove(tempdir + "cidfile")
|
||||
Expect(err).To(BeNil())
|
||||
})
|
||||
|
||||
@ -317,7 +317,7 @@ var _ = Describe("Podman run", func() {
|
||||
|
||||
It("podman test hooks", func() {
|
||||
hcheck := "/run/hookscheck"
|
||||
hooksDir := "/tmp/hooks"
|
||||
hooksDir := tempdir + "/hooks"
|
||||
os.Mkdir(hooksDir, 0755)
|
||||
fileutils.CopyFile("hooks/hooks.json", hooksDir)
|
||||
os.Setenv("HOOK_OPTION", fmt.Sprintf("--hooks-dir-path=%s", hooksDir))
|
||||
@ -347,7 +347,7 @@ var _ = Describe("Podman run", func() {
|
||||
err = ioutil.WriteFile(secretsFile, []byte(secretsString), 0755)
|
||||
Expect(err).To(BeNil())
|
||||
|
||||
targetDir := "/tmp/symlink/target"
|
||||
targetDir := tempdir + "/symlink/target"
|
||||
err = os.MkdirAll(targetDir, 0755)
|
||||
Expect(err).To(BeNil())
|
||||
keyFile := filepath.Join(targetDir, "key.pem")
|
||||
|
Reference in New Issue
Block a user