diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-14 14:55:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-14 14:55:21 +0000 |
commit | cffed099b8404fa7f136643116020edac2336155 (patch) | |
tree | ac5cced17ea86cca6f4b79dc0f95856dd0663649 /pkg/api | |
parent | 78ecdad5f8f16dbb6146f2741a3d7ead1ce837bc (diff) | |
parent | 5e9d20448c52fd134ac990e9f897cbc378760fce (diff) | |
download | podman-cffed099b8404fa7f136643116020edac2336155.tar.gz podman-cffed099b8404fa7f136643116020edac2336155.tar.bz2 podman-cffed099b8404fa7f136643116020edac2336155.zip |
Merge pull request #14561 from rhatdan/VENDOR
Update vendor of containers/buildah
Diffstat (limited to 'pkg/api')
-rw-r--r-- | pkg/api/handlers/compat/images_build.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/api/handlers/compat/images_build.go b/pkg/api/handlers/compat/images_build.go index fe17aa1d4..7e599f4d3 100644 --- a/pkg/api/handlers/compat/images_build.go +++ b/pkg/api/handlers/compat/images_build.go @@ -111,6 +111,7 @@ func BuildImage(w http.ResponseWriter, r *http.Request) { Memory int64 `schema:"memory"` NamespaceOptions string `schema:"nsoptions"` NoCache bool `schema:"nocache"` + OmitHistory bool `schema:"omithistory"` OSFeatures []string `schema:"osfeature"` OSVersion string `schema:"osversion"` OutputFormat string `schema:"outputformat"` @@ -595,6 +596,7 @@ func BuildImage(w http.ResponseWriter, r *http.Request) { LabelOpts: labelOpts, Memory: query.Memory, MemorySwap: query.MemSwap, + OmitHistory: query.OmitHistory, SeccompProfilePath: seccomp, ShmSize: strconv.Itoa(query.ShmSize), Ulimit: ulimits, |