diff options
author | Andy Librian <andylibrian@gmail.com> | 2020-11-07 12:44:30 +0700 |
---|---|---|
committer | Andy Librian <andylibrian@gmail.com> | 2020-11-08 08:59:18 +0700 |
commit | f3355d9697119a1fd44abea1981d5ab6337ab67a (patch) | |
tree | e26da379377ab005f65e656f5f78856d5f2efd7a /pkg/domain/entities | |
parent | e2b82e6245ed9459a37dc004a2b1d593d2835cb7 (diff) | |
download | podman-f3355d9697119a1fd44abea1981d5ab6337ab67a.tar.gz podman-f3355d9697119a1fd44abea1981d5ab6337ab67a.tar.bz2 podman-f3355d9697119a1fd44abea1981d5ab6337ab67a.zip |
Add --log-driver to play kube
addresses #6604
Signed-off-by: Andy Librian <andylibrian@gmail.com>
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 |