diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-07 06:29:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-07 06:29:00 -0500 |
commit | 87d911aca97a824728e499c8590e20e8528e24d5 (patch) | |
tree | 07f2821cdf207b804c850efaf0b4f7fe1221e1a7 /pkg/domain | |
parent | f4d6e8777213880204ccbce92201c47c74b33036 (diff) | |
parent | d302c08cffb2c696c8afe7282d16c01a120db85a (diff) | |
download | podman-87d911aca97a824728e499c8590e20e8528e24d5.tar.gz podman-87d911aca97a824728e499c8590e20e8528e24d5.tar.bz2 podman-87d911aca97a824728e499c8590e20e8528e24d5.zip |
Merge pull request #13423 from umohnani8/kube
Throw an error if kube yaml has duplicate ctr names
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/infra/abi/play.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/play.go b/pkg/domain/infra/abi/play.go index 8cbf5da9a..4d8112c47 100644 --- a/pkg/domain/infra/abi/play.go +++ b/pkg/domain/infra/abi/play.go @@ -359,7 +359,13 @@ func (ic *ContainerEngine) playKubePod(ctx context.Context, podName string, podY return nil, err } + ctrNames := make(map[string]string) for _, initCtr := range podYAML.Spec.InitContainers { + // Error out if same name is used for more than one container + if _, ok := ctrNames[initCtr.Name]; ok { + return nil, errors.Errorf("the pod %q is invalid; duplicate container name %q detected", podName, initCtr.Name) + } + ctrNames[initCtr.Name] = "" // Init containers cannot have either of lifecycle, livenessProbe, readinessProbe, or startupProbe set if initCtr.Lifecycle != nil || initCtr.LivenessProbe != nil || initCtr.ReadinessProbe != nil || initCtr.StartupProbe != nil { return nil, errors.Errorf("cannot create an init container that has either of lifecycle, livenessProbe, readinessProbe, or startupProbe set") @@ -408,6 +414,11 @@ func (ic *ContainerEngine) playKubePod(ctx context.Context, podName string, podY } for _, container := range podYAML.Spec.Containers { if !strings.Contains("infra", container.Name) { + // Error out if the same name is used for more than one container + if _, ok := ctrNames[container.Name]; ok { + return nil, errors.Errorf("the pod %q is invalid; duplicate container name %q detected", podName, container.Name) + } + ctrNames[container.Name] = "" pulledImage, labels, err := ic.getImageAndLabelInfo(ctx, cwd, annotations, writer, container, options) if err != nil { return nil, err |