diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-01 13:27:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 13:27:17 -0400 |
commit | 1b88b678cf14946c4392bccfd9db2ff8510066ee (patch) | |
tree | 2b83b71166121cf0a85b3a8869627a481bd0a5de /pkg/api | |
parent | c6a896b0c705415a9115dff354b0a19a2c08ce50 (diff) | |
parent | 641f0ccc4eb999af3c2a01d709769287ba45451c (diff) | |
download | podman-1b88b678cf14946c4392bccfd9db2ff8510066ee.tar.gz podman-1b88b678cf14946c4392bccfd9db2ff8510066ee.tar.bz2 podman-1b88b678cf14946c4392bccfd9db2ff8510066ee.zip |
Merge pull request #11707 from rhatdan/play
Add podman play kube --no-hosts options
Diffstat (limited to 'pkg/api')
-rw-r--r-- | pkg/api/handlers/libpod/play.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/play.go b/pkg/api/handlers/libpod/play.go index 0def32821..851e0f6c8 100644 --- a/pkg/api/handlers/libpod/play.go +++ b/pkg/api/handlers/libpod/play.go @@ -29,6 +29,7 @@ func PlayKube(w http.ResponseWriter, r *http.Request) { Start bool `schema:"start"` StaticIPs []string `schema:"staticIPs"` StaticMACs []string `schema:"staticMACs"` + NoHosts bool `schema:"noHosts"` }{ TLSVerify: true, Start: true, @@ -102,6 +103,7 @@ func PlayKube(w http.ResponseWriter, r *http.Request) { Username: username, Password: password, Network: query.Network, + NoHosts: query.NoHosts, Quiet: true, LogDriver: query.LogDriver, StaticIPs: staticIPs, |