summaryrefslogtreecommitdiff
path: root/libpod/networking_linux.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-01-24 14:04:49 -0500
committerGitHub <noreply@github.com>2022-01-24 14:04:49 -0500
commit667dfb4ac3ca4b7d7726240db04de4d4b10f8bbd (patch)
treeda16228cfb0bbd59e16a06e1de3446a7b2edbffa /libpod/networking_linux.go
parent54bfabb78a09bc50f270a81756a303e49965f253 (diff)
parent2f371cb12c0a637ac4fc5e58e7bb63d4deefbd03 (diff)
downloadpodman-667dfb4ac3ca4b7d7726240db04de4d4b10f8bbd.tar.gz
podman-667dfb4ac3ca4b7d7726240db04de4d4b10f8bbd.tar.bz2
podman-667dfb4ac3ca4b7d7726240db04de4d4b10f8bbd.zip
Merge pull request #12991 from Luap99/aliases
container create: do not check for network dns support
Diffstat (limited to 'libpod/networking_linux.go')
-rw-r--r--libpod/networking_linux.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/libpod/networking_linux.go b/libpod/networking_linux.go
index 110f37b91..f3707a77d 100644
--- a/libpod/networking_linux.go
+++ b/libpod/networking_linux.go
@@ -1198,13 +1198,6 @@ func (c *Container) NetworkConnect(nameOrID, netName string, netOpts types.PerNe
// get network status before we connect
networkStatus := c.getNetworkStatus()
- network, err := c.runtime.network.NetworkInspect(netName)
- if err != nil {
- return err
- }
- if !network.DNSEnabled && len(netOpts.Aliases) > 0 {
- return errors.Wrapf(define.ErrInvalidArg, "cannot set network aliases for network %q because dns is disabled", netName)
- }
// always add the short id as alias for docker compat
netOpts.Aliases = append(netOpts.Aliases, c.config.ID[:12])