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/domain/entities/play.go | |
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/domain/entities/play.go')
-rw-r--r-- | pkg/domain/entities/play.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/domain/entities/play.go b/pkg/domain/entities/play.go index f630b3f24..af4b0fc35 100644 --- a/pkg/domain/entities/play.go +++ b/pkg/domain/entities/play.go @@ -17,6 +17,9 @@ type PlayKubeOptions struct { // Down indicates whether to bring contents of a yaml file "down" // as in stop Down bool + // Do not create /etc/hosts within the pod's containers, + // instead use the version from the image + NoHosts bool // Username for authenticating against the registry. Username string // Password for authenticating against the registry. |