diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-08 15:05:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-08 15:05:42 +0200 |
commit | bd4d9a09520b2329b1cf3dd8cdf8194b8bdeab67 (patch) | |
tree | a3705e99f19f204f87bbb927d25e7c5988af3cec /pkg/domain | |
parent | 14c0fcc6b7b3e8c1f28efea329ab9a6bf0d99b70 (diff) | |
parent | 6fc73ea4ea4fa8b82092fc605390d3cfece97dd1 (diff) | |
download | podman-bd4d9a09520b2329b1cf3dd8cdf8194b8bdeab67.tar.gz podman-bd4d9a09520b2329b1cf3dd8cdf8194b8bdeab67.tar.bz2 podman-bd4d9a09520b2329b1cf3dd8cdf8194b8bdeab67.zip |
Merge pull request #11671 from chenzhiwei/kube-replace
introduce --replace flag for play kube
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/entities/play.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/entities/play.go b/pkg/domain/entities/play.go index af4b0fc35..715d8acaf 100644 --- a/pkg/domain/entities/play.go +++ b/pkg/domain/entities/play.go @@ -17,6 +17,8 @@ type PlayKubeOptions struct { // Down indicates whether to bring contents of a yaml file "down" // as in stop Down bool + // Replace indicates whether to delete and recreate a yaml file + Replace bool // Do not create /etc/hosts within the pod's containers, // instead use the version from the image NoHosts bool |