summaryrefslogtreecommitdiff
path: root/libpod/kube.go
diff options
context:
space:
mode:
authorParker Van Roy <pvanroy@redhat.com>2020-09-10 15:27:11 -0400
committerParker Van Roy <pvanroy@redhat.com>2020-09-10 15:27:11 -0400
commitaaf18e0cbe758d75fd5c9ddbcda6e34fc00d6304 (patch)
treedf16e103586dfc011ff0c040c0869578e824038b /libpod/kube.go
parent89a348346df1f87a4cf8bc90c7f047f8ac6a074f (diff)
downloadpodman-aaf18e0cbe758d75fd5c9ddbcda6e34fc00d6304.tar.gz
podman-aaf18e0cbe758d75fd5c9ddbcda6e34fc00d6304.tar.bz2
podman-aaf18e0cbe758d75fd5c9ddbcda6e34fc00d6304.zip
allowed underscores to remain in name for YAML
Signed-off-by: Parker Van Roy <pvanroy@redhat.com>
Diffstat (limited to 'libpod/kube.go')
-rw-r--r--libpod/kube.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/kube.go b/libpod/kube.go
index 5f2c9e0fd..864bc78c7 100644
--- a/libpod/kube.go
+++ b/libpod/kube.go
@@ -191,7 +191,7 @@ func addContainersAndVolumesToPodObject(containers []v1.Container, volumes []v1.
labels["app"] = removeUnderscores(podName)
om := v12.ObjectMeta{
// The name of the pod is container_name-libpod
- Name: removeUnderscores(podName),
+ Name: podName,
Labels: labels,
// CreationTimestamp seems to be required, so adding it; in doing so, the timestamp
// will reflect time this is run (not container create time) because the conversion