diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-04-06 11:55:40 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-04-11 18:41:19 +0200 |
commit | d8a902a167b91ca4fde4ffeef55e9aa4907ae258 (patch) | |
tree | 0a011a24406b835d3e27dd225956c8c3e18ec93b /pkg/api | |
parent | 1d01815c107c91f6cfe98446d334c94a97d11080 (diff) | |
download | podman-d8a902a167b91ca4fde4ffeef55e9aa4907ae258.tar.gz podman-d8a902a167b91ca4fde4ffeef55e9aa4907ae258.tar.bz2 podman-d8a902a167b91ca4fde4ffeef55e9aa4907ae258.zip |
API: use no_hosts from containers.conf
The API endpoints should properly honour the `no_hosts=true` setting in
containers.conf.
Fixes #13719
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/api')
-rw-r--r-- | pkg/api/handlers/libpod/containers_create.go | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/pkg/api/handlers/libpod/containers_create.go b/pkg/api/handlers/libpod/containers_create.go index 61f437faf..4f9dc008d 100644 --- a/pkg/api/handlers/libpod/containers_create.go +++ b/pkg/api/handlers/libpod/containers_create.go @@ -18,7 +18,18 @@ import ( // the new container ID on success along with any warnings. func CreateContainer(w http.ResponseWriter, r *http.Request) { runtime := r.Context().Value(api.RuntimeKey).(*libpod.Runtime) - var sg specgen.SpecGenerator + conf, err := runtime.GetConfigNoCopy() + if err != nil { + utils.InternalServerError(w, err) + return + } + + // we have to set the default before we decode to make sure the correct default is set when the field is unset + sg := specgen.SpecGenerator{ + ContainerNetworkConfig: specgen.ContainerNetworkConfig{ + UseImageHosts: conf.Containers.NoHosts, + }, + } if err := json.NewDecoder(r.Body).Decode(&sg); err != nil { utils.Error(w, http.StatusInternalServerError, errors.Wrap(err, "Decode()")) |