summaryrefslogtreecommitdiff
path: root/test/e2e/generate_kube_test.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2021-11-22 11:50:08 -0600
committerBrent Baude <bbaude@redhat.com>2021-11-22 11:50:08 -0600
commit9c8fb5cc0c0eb17adac1c2ddb43e23cd723c718b (patch)
treef564e502b0a06f330dd2fbf4e1389d1bd5312419 /test/e2e/generate_kube_test.go
parent26b45a1564fb01090f6a10776922654641a76681 (diff)
downloadpodman-9c8fb5cc0c0eb17adac1c2ddb43e23cd723c718b.tar.gz
podman-9c8fb5cc0c0eb17adac1c2ddb43e23cd723c718b.tar.bz2
podman-9c8fb5cc0c0eb17adac1c2ddb43e23cd723c718b.zip
Rename pod on generate of container
When generating kube of a container, the podname and container name in the yaml are identical. This offends rules in podman where pods and containers cannot have the same name. We now append _pod to the podname to avoid that collision. Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e/generate_kube_test.go')
-rw-r--r--test/e2e/generate_kube_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/e2e/generate_kube_test.go b/test/e2e/generate_kube_test.go
index cd382eba9..d95555068 100644
--- a/test/e2e/generate_kube_test.go
+++ b/test/e2e/generate_kube_test.go
@@ -71,6 +71,7 @@ var _ = Describe("Podman generate kube", func() {
Expect(pod.Spec.DNSConfig).To(BeNil())
Expect(pod.Spec.Containers[0].WorkingDir).To(Equal(""))
Expect(pod.Spec.Containers[0].Env).To(BeNil())
+ Expect(pod.Name).To(Equal("top_pod"))
numContainers := 0
for range pod.Spec.Containers {