diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2021-04-15 18:24:22 +0200 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-04-16 14:05:27 -0400 |
commit | 9584a2a8a17ecffa974891d76b6d6482555e7b72 (patch) | |
tree | 0e67768eda43e1ac092829e059d8b9041c71b362 /pkg/specgen/generate | |
parent | e4c811bb0f629a2d8718cd82b674dedeaecc31a2 (diff) | |
download | podman-9584a2a8a17ecffa974891d76b6d6482555e7b72.tar.gz podman-9584a2a8a17ecffa974891d76b6d6482555e7b72.tar.bz2 podman-9584a2a8a17ecffa974891d76b6d6482555e7b72.zip |
podman play kube apply correct log driver
The --log-driver flag was silently ignored by podman play kube. This
regression got introduced during the play kube rework.
Unfortunately the test for this was skipped for no good reason.
Fixes #10015
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
<MH: Fixed cherry-pick conflicts>
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'pkg/specgen/generate')
-rw-r--r-- | pkg/specgen/generate/kube/kube.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/specgen/generate/kube/kube.go b/pkg/specgen/generate/kube/kube.go index d61c8bd19..45cb7c3f6 100644 --- a/pkg/specgen/generate/kube/kube.go +++ b/pkg/specgen/generate/kube/kube.go @@ -94,6 +94,8 @@ type CtrSpecGenOptions struct { RestartPolicy string // NetNSIsHost tells the container to use the host netns NetNSIsHost bool + // LogDriver which should be used for the container + LogDriver string } func ToSpecGen(ctx context.Context, opts *CtrSpecGenOptions) (*specgen.SpecGenerator, error) { @@ -111,6 +113,10 @@ func ToSpecGen(ctx context.Context, opts *CtrSpecGenOptions) (*specgen.SpecGener s.Pod = opts.PodID + s.LogConfiguration = &specgen.LogConfig{ + Driver: opts.LogDriver, + } + setupSecurityContext(s, opts.Container) // Since we prefix the container name with pod name to work-around the uniqueness requirement, |