diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-10 12:29:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 12:29:19 +0000 |
commit | da95fb4226c82694af19610578d9c14a6aa964f2 (patch) | |
tree | 4619c8156df3d85b7d56ebc6e2c17dac1c829e19 /pkg/domain/entities | |
parent | c20970f2b4de458afb631d3afdae30bfa0f686e5 (diff) | |
parent | f3355d9697119a1fd44abea1981d5ab6337ab67a (diff) | |
download | podman-da95fb4226c82694af19610578d9c14a6aa964f2.tar.gz podman-da95fb4226c82694af19610578d9c14a6aa964f2.tar.bz2 podman-da95fb4226c82694af19610578d9c14a6aa964f2.zip |
Merge pull request #8270 from andylibrian/log-driver-option-for-play-kube
Add --log-driver to play kube
Diffstat (limited to 'pkg/domain/entities')
-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 356e6869d..7e4afcc28 100644 --- a/pkg/domain/entities/play.go +++ b/pkg/domain/entities/play.go @@ -26,6 +26,8 @@ type PlayKubeOptions struct { SeccompProfileRoot string // ConfigMaps - slice of pathnames to kubernetes configmap YAMLs. ConfigMaps []string + // LogDriver for the container. For example: journald + LogDriver string } // PlayKubePod represents a single pod and associated containers created by play kube |