summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorUrvashi Mohnani <umohnani@redhat.com>2022-08-30 10:34:13 -0400
committerUrvashi Mohnani <umohnani@redhat.com>2022-08-31 14:02:13 -0400
commit84352a81c95b0a322f6b0d691fbd49d82fbc76b6 (patch)
treeb59d85293e446732de8ed9dcaf62a6d5c46850a5 /libpod
parent8266dbe7a90f6f03995b42315b3ac2da54cd018f (diff)
downloadpodman-84352a81c95b0a322f6b0d691fbd49d82fbc76b6.tar.gz
podman-84352a81c95b0a322f6b0d691fbd49d82fbc76b6.tar.bz2
podman-84352a81c95b0a322f6b0d691fbd49d82fbc76b6.zip
Set enableServiceLinks to false in generated yaml
Since podman doesn't set/use the needed service env variable, always set enableServiceLinks to false in the generated kube yaml. Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r--libpod/kube.go13
1 files changed, 8 insertions, 5 deletions
diff --git a/libpod/kube.go b/libpod/kube.go
index a0fb52973..a70782d69 100644
--- a/libpod/kube.go
+++ b/libpod/kube.go
@@ -468,12 +468,15 @@ func newPodObject(podName string, annotations map[string]string, initCtrs, conta
CreationTimestamp: v12.Now(),
Annotations: annotations,
}
+ // Set enableServiceLinks to false as podman doesn't use the service port environment variables
+ enableServiceLinks := false
ps := v1.PodSpec{
- Containers: containers,
- Hostname: hostname,
- HostNetwork: hostNetwork,
- InitContainers: initCtrs,
- Volumes: volumes,
+ Containers: containers,
+ Hostname: hostname,
+ HostNetwork: hostNetwork,
+ InitContainers: initCtrs,
+ Volumes: volumes,
+ EnableServiceLinks: &enableServiceLinks,
}
if dnsOptions != nil && (len(dnsOptions.Nameservers)+len(dnsOptions.Searches)+len(dnsOptions.Options) > 0) {
ps.DNSConfig = dnsOptions