diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-20 10:39:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-20 10:39:15 +0100 |
commit | 846405256b38b11babf05de3a7666ceb81577a72 (patch) | |
tree | 4224e4853f474f78c48a49177faf39b2235fc7d6 /pkg/adapter/pods_remote.go | |
parent | 7e33dc4300f78fe9121c564bc22435514730a0ea (diff) | |
parent | 97323808ed57cf52311a80c55339f8927614b7f0 (diff) | |
download | podman-846405256b38b11babf05de3a7666ceb81577a72.tar.gz podman-846405256b38b11babf05de3a7666ceb81577a72.tar.bz2 podman-846405256b38b11babf05de3a7666ceb81577a72.zip |
Merge pull request #5241 from mheon/pod_network_opts_add
Add network opts to pods
Diffstat (limited to 'pkg/adapter/pods_remote.go')
-rw-r--r-- | pkg/adapter/pods_remote.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/adapter/pods_remote.go b/pkg/adapter/pods_remote.go index 5ef1a9216..20f089628 100644 --- a/pkg/adapter/pods_remote.go +++ b/pkg/adapter/pods_remote.go @@ -185,7 +185,7 @@ func (r *LocalRuntime) CreatePod(ctx context.Context, cli *cliconfig.PodCreateVa Infra: cli.Infra, InfraCommand: cli.InfraCommand, InfraImage: cli.InfraCommand, - Publish: cli.Publish, + Publish: cli.StringSlice("publish"), } return iopodman.CreatePod().Call(r.Conn, pc) |