mirror of
https://github.com/containers/podman.git
synced 2025-07-13 17:31:21 +08:00
Merge pull request #16668 from karta0807913/main
fix an override logic in Inherit function
This commit is contained in:
@ -614,8 +614,13 @@ func Inherit(infra libpod.Container, s *specgen.SpecGenerator, rt *libpod.Runtim
|
|||||||
return nil, nil, nil, err
|
return nil, nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// podman pod container can override pod ipc NS
|
||||||
|
if !s.IpcNS.IsDefault() {
|
||||||
|
inheritSpec.IpcNS = s.IpcNS
|
||||||
|
}
|
||||||
|
|
||||||
// this causes errors when shmSize is the default value, it will still get passed down unless we manually override.
|
// this causes errors when shmSize is the default value, it will still get passed down unless we manually override.
|
||||||
if s.IpcNS.NSMode == specgen.Host && (compatibleOptions.ShmSize != nil && compatibleOptions.IsDefaultShmSize()) {
|
if inheritSpec.IpcNS.NSMode == specgen.Host && (compatibleOptions.ShmSize != nil && compatibleOptions.IsDefaultShmSize()) {
|
||||||
s.ShmSize = nil
|
s.ShmSize = nil
|
||||||
}
|
}
|
||||||
return options, infraSpec, compatibleOptions, nil
|
return options, infraSpec, compatibleOptions, nil
|
||||||
|
@ -16,6 +16,7 @@ import (
|
|||||||
|
|
||||||
"github.com/containers/common/libimage"
|
"github.com/containers/common/libimage"
|
||||||
"github.com/containers/common/libnetwork/types"
|
"github.com/containers/common/libnetwork/types"
|
||||||
|
"github.com/containers/common/pkg/config"
|
||||||
"github.com/containers/common/pkg/parse"
|
"github.com/containers/common/pkg/parse"
|
||||||
"github.com/containers/common/pkg/secrets"
|
"github.com/containers/common/pkg/secrets"
|
||||||
cutil "github.com/containers/common/pkg/util"
|
cutil "github.com/containers/common/pkg/util"
|
||||||
@ -148,6 +149,21 @@ type CtrSpecGenOptions struct {
|
|||||||
func ToSpecGen(ctx context.Context, opts *CtrSpecGenOptions) (*specgen.SpecGenerator, error) {
|
func ToSpecGen(ctx context.Context, opts *CtrSpecGenOptions) (*specgen.SpecGenerator, error) {
|
||||||
s := specgen.NewSpecGenerator(opts.Container.Image, false)
|
s := specgen.NewSpecGenerator(opts.Container.Image, false)
|
||||||
|
|
||||||
|
rtc, err := config.Default()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if s.CgroupsMode == "" {
|
||||||
|
s.CgroupsMode = rtc.Cgroups()
|
||||||
|
}
|
||||||
|
if len(s.ImageVolumeMode) == 0 {
|
||||||
|
s.ImageVolumeMode = rtc.Engine.ImageVolumeMode
|
||||||
|
}
|
||||||
|
if s.ImageVolumeMode == "bind" {
|
||||||
|
s.ImageVolumeMode = "anonymous"
|
||||||
|
}
|
||||||
|
|
||||||
// pod name should be non-empty for Deployment objects to be able to create
|
// pod name should be non-empty for Deployment objects to be able to create
|
||||||
// multiple pods having containers with unique names
|
// multiple pods having containers with unique names
|
||||||
if len(opts.PodName) < 1 {
|
if len(opts.PodName) < 1 {
|
||||||
@ -199,7 +215,7 @@ func ToSpecGen(ctx context.Context, opts *CtrSpecGenOptions) (*specgen.SpecGener
|
|||||||
s.InitContainerType = opts.InitContainerType
|
s.InitContainerType = opts.InitContainerType
|
||||||
|
|
||||||
setupSecurityContext(s, opts.Container.SecurityContext, opts.PodSecurityContext)
|
setupSecurityContext(s, opts.Container.SecurityContext, opts.PodSecurityContext)
|
||||||
err := setupLivenessProbe(s, opts.Container, opts.RestartPolicy)
|
err = setupLivenessProbe(s, opts.Container, opts.RestartPolicy)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("failed to configure livenessProbe: %w", err)
|
return nil, fmt.Errorf("failed to configure livenessProbe: %w", err)
|
||||||
}
|
}
|
||||||
|
@ -175,8 +175,19 @@ spec:
|
|||||||
volumes:
|
volumes:
|
||||||
- name: foo
|
- name: foo
|
||||||
secret:
|
secret:
|
||||||
secretName: oldsecret
|
secretName: oldsecret`
|
||||||
`
|
|
||||||
|
var simplePodYaml = `
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: libpod-test
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: quay.io/libpod/alpine_nginx:latest
|
||||||
|
command:
|
||||||
|
- sleep
|
||||||
|
- "3600"`
|
||||||
|
|
||||||
var unknownKindYaml = `
|
var unknownKindYaml = `
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
@ -4376,4 +4387,23 @@ ENV OPENJ9_JAVA_OPTIONS=%q
|
|||||||
deleteAndTestSecret(podmanTest, "newsecret")
|
deleteAndTestSecret(podmanTest, "newsecret")
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("podman play kube with disabled cgroup", func() {
|
||||||
|
conffile := filepath.Join(podmanTest.TempDir, "container.conf")
|
||||||
|
// Disabled ipcns and cgroupfs in the config file
|
||||||
|
// Since shmsize (Inherit from infra container) cannot be set if ipcns is "host", we should remove the default value.
|
||||||
|
// Also, cgroupfs config should be loaded into SpecGenerator when playing kube.
|
||||||
|
err := os.WriteFile(conffile, []byte(`
|
||||||
|
[containers]
|
||||||
|
ipcns="host"
|
||||||
|
cgroups="disabled"`), 0644)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
defer os.Unsetenv("CONTAINERS_CONF")
|
||||||
|
os.Setenv("CONTAINERS_CONF", conffile)
|
||||||
|
err = writeYaml(simplePodYaml, kubeYaml)
|
||||||
|
Expect(err).To(BeNil())
|
||||||
|
|
||||||
|
kube := podmanTest.Podman([]string{"play", "kube", kubeYaml})
|
||||||
|
kube.WaitWithDefaultTimeout()
|
||||||
|
Expect(kube).Should(Exit(0))
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
Reference in New Issue
Block a user