diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-03 09:31:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 09:31:43 -0500 |
commit | caa84cd35d1bf18c530daf96c48c3185d073e7b6 (patch) | |
tree | 5ef5774ed11ac6b28f7139f387793114bd739824 /pkg/specgen/namespaces.go | |
parent | 85b412ddcdacb635e13ec67ecd2df5990dbdca02 (diff) | |
parent | ee418c8565a46fc500c5e17067966a478efd4197 (diff) | |
download | podman-caa84cd35d1bf18c530daf96c48c3185d073e7b6.tar.gz podman-caa84cd35d1bf18c530daf96c48c3185d073e7b6.tar.bz2 podman-caa84cd35d1bf18c530daf96c48c3185d073e7b6.zip |
Merge pull request #8551 from rhatdan/default
Support --network=default as if it was private
Diffstat (limited to 'pkg/specgen/namespaces.go')
-rw-r--r-- | pkg/specgen/namespaces.go | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/pkg/specgen/namespaces.go b/pkg/specgen/namespaces.go index d15745fa0..9d78a0210 100644 --- a/pkg/specgen/namespaces.go +++ b/pkg/specgen/namespaces.go @@ -258,24 +258,22 @@ func ParseNetworkNamespace(ns string) (Namespace, []string, error) { var cniNetworks []string // Net defaults to Slirp on rootless switch { - case ns == "slirp4netns", strings.HasPrefix(ns, "slirp4netns:"): + case ns == string(Slirp), strings.HasPrefix(ns, string(Slirp)+":"): toReturn.NSMode = Slirp - case ns == "pod": + case ns == string(FromPod): toReturn.NSMode = FromPod - case ns == "": + case ns == "" || ns == string(Default) || ns == string(Private): if rootless.IsRootless() { toReturn.NSMode = Slirp } else { toReturn.NSMode = Bridge } - case ns == "bridge": + case ns == string(Bridge): toReturn.NSMode = Bridge - case ns == "none": + case ns == string(NoNetwork): toReturn.NSMode = NoNetwork - case ns == "host": + case ns == string(Host): toReturn.NSMode = Host - case ns == "private": - toReturn.NSMode = Private case strings.HasPrefix(ns, "ns:"): split := strings.SplitN(ns, ":", 2) if len(split) != 2 { @@ -283,7 +281,7 @@ func ParseNetworkNamespace(ns string) (Namespace, []string, error) { } toReturn.NSMode = Path toReturn.Value = split[1] - case strings.HasPrefix(ns, "container:"): + case strings.HasPrefix(ns, string(FromContainer)+":"): split := strings.SplitN(ns, ":", 2) if len(split) != 2 { return toReturn, nil, errors.Errorf("must provide name or ID or a container when specifying container:") |