summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-18 04:37:13 -0400
committerGitHub <noreply@github.com>2020-10-18 04:37:13 -0400
commit6ec96dc009d73cc2b0a3fa81149ca599b04252e4 (patch)
tree4197cadbbf984e759c1413b3f1d1fbf5305b5e29
parent39f1bea46dbdbefb917d361726e8452e9fa5c276 (diff)
parent0fd543790474378575a22de416a4f77cdcc1ce06 (diff)
downloadpodman-6ec96dc009d73cc2b0a3fa81149ca599b04252e4.tar.gz
podman-6ec96dc009d73cc2b0a3fa81149ca599b04252e4.tar.bz2
podman-6ec96dc009d73cc2b0a3fa81149ca599b04252e4.zip
Merge pull request #8044 from Luap99/fix-8040
Always add the dnsname plugin to the config for rootless
-rw-r--r--libpod/network/create.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/libpod/network/create.go b/libpod/network/create.go
index a9ed4c4ef..bf11631bf 100644
--- a/libpod/network/create.go
+++ b/libpod/network/create.go
@@ -10,6 +10,7 @@ import (
"github.com/containernetworking/cni/pkg/version"
"github.com/containers/podman/v2/libpod"
"github.com/containers/podman/v2/pkg/domain/entities"
+ "github.com/containers/podman/v2/pkg/rootless"
"github.com/containers/podman/v2/pkg/util"
"github.com/pkg/errors"
)
@@ -131,8 +132,9 @@ func createBridge(r *libpod.Runtime, name string, options entities.NetworkCreate
plugins = append(plugins, bridge)
plugins = append(plugins, NewPortMapPlugin())
plugins = append(plugins, NewFirewallPlugin())
- // if we find the dnsname plugin, we add configuration for it
- if HasDNSNamePlugin(runtimeConfig.Network.CNIPluginDirs) && !options.DisableDNS {
+ // if we find the dnsname plugin or are rootless, we add configuration for it
+ // the rootless-cni-infra container has the dnsname plugin always installed
+ if (HasDNSNamePlugin(runtimeConfig.Network.CNIPluginDirs) || rootless.IsRootless()) && !options.DisableDNS {
// Note: in the future we might like to allow for dynamic domain names
plugins = append(plugins, NewDNSNamePlugin(DefaultPodmanDomainName))
}