diff options
author | Paul Holzinger <pholzing@redhat.com> | 2021-11-08 15:22:43 +0100 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2021-11-11 14:27:31 +0100 |
commit | eca1b6c0bdfca59c8c8a85fe29f4159034f311d0 (patch) | |
tree | e78900bcfe5b73a3c776b310a9f8cb8b30a16d9a /cmd/podman/pods | |
parent | 8de9950038b5a0582bfecfbe3a11427e6cfbfcfe (diff) | |
download | podman-eca1b6c0bdfca59c8c8a85fe29f4159034f311d0.tar.gz podman-eca1b6c0bdfca59c8c8a85fe29f4159034f311d0.tar.bz2 podman-eca1b6c0bdfca59c8c8a85fe29f4159034f311d0.zip |
pod create: read network mode from config
When we create a pod we have to parse the network mode form the config
file. This is a regression in commit d28e85741f.
Fixes #12207
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'cmd/podman/pods')
-rw-r--r-- | cmd/podman/pods/create.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/pods/create.go b/cmd/podman/pods/create.go index b3f84dcd8..58bb799a3 100644 --- a/cmd/podman/pods/create.go +++ b/cmd/podman/pods/create.go @@ -116,7 +116,7 @@ func create(cmd *cobra.Command, args []string) error { return fmt.Errorf("cannot specify no-hosts without an infra container") } flags := cmd.Flags() - createOptions.Net, err = common.NetFlagsToNetOptions(nil, *flags, false) + createOptions.Net, err = common.NetFlagsToNetOptions(nil, *flags, createOptions.Infra) if err != nil { return err } @@ -139,7 +139,7 @@ func create(cmd *cobra.Command, args []string) error { createOptions.CpusetCpus = infraOptions.CPUSetCPUs createOptions.Pid = infraOptions.PID flags := cmd.Flags() - infraOptions.Net, err = common.NetFlagsToNetOptions(nil, *flags, false) + infraOptions.Net, err = common.NetFlagsToNetOptions(nil, *flags, createOptions.Infra) if err != nil { return err } |