summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-10-15 01:22:55 +0200
committerGitHub <noreply@github.com>2021-10-15 01:22:55 +0200
commitfecef1533253ffad101619be2b4686ec8cd131de (patch)
tree0d584f2ef1562d3d7f6bff416c14ceda2b773886 /libpod
parent8d44c548c085c65cae33398b322eabadb6b237f7 (diff)
parent16e7cc8bf17c88f2ec422037ab5a1fc640bfb800 (diff)
downloadpodman-fecef1533253ffad101619be2b4686ec8cd131de.tar.gz
podman-fecef1533253ffad101619be2b4686ec8cd131de.tar.bz2
podman-fecef1533253ffad101619be2b4686ec8cd131de.zip
Merge pull request #11980 from umohnani8/kube
Do not add TCP to protocol in generated kube yaml
Diffstat (limited to 'libpod')
-rw-r--r--libpod/kube.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/kube.go b/libpod/kube.go
index d68140d5e..5a33bc968 100644
--- a/libpod/kube.go
+++ b/libpod/kube.go
@@ -578,7 +578,8 @@ func ocicniPortMappingToContainerPort(portMappings []types.OCICNIPortMapping) ([
var protocol v1.Protocol
switch strings.ToUpper(p.Protocol) {
case "TCP":
- protocol = v1.ProtocolTCP
+ // do nothing as it is the default protocol in k8s, there is no need to explicitly
+ // add it to the generated yaml
case "UDP":
protocol = v1.ProtocolUDP
default: