summaryrefslogtreecommitdiff
path: root/cmd/podman/common/specgen.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2021-01-19 15:51:01 -0600
committerbaude <bbaude@redhat.com>2021-01-20 13:07:31 -0600
commitf43046745386d8cd15e010a6ade65619ad12b383 (patch)
tree6fe2543805da1c05e64daf20ad93779152bdad95 /cmd/podman/common/specgen.go
parentfe4f9ba303affde0b838e19c862b45206ae2feed (diff)
downloadpodman-f43046745386d8cd15e010a6ade65619ad12b383.tar.gz
podman-f43046745386d8cd15e010a6ade65619ad12b383.tar.bz2
podman-f43046745386d8cd15e010a6ade65619ad12b383.zip
Set log driver for compatability containers
when using the compatibility api to create containers, now reflect the use of k8s-file as json-file so that clients, which are unaware of k8s-file, can work. specifically, if the container is using k8s-file as the log driver, we change the log type in container inspection to json-file. These terms are used interchangably in other locations in libpod/podman. this fixes log messages in compose as well. [NO TESTS NEEDED] Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/common/specgen.go')
-rw-r--r--cmd/podman/common/specgen.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common/specgen.go b/cmd/podman/common/specgen.go
index 287836d9f..4cc53a630 100644
--- a/cmd/podman/common/specgen.go
+++ b/cmd/podman/common/specgen.go
@@ -463,7 +463,7 @@ func FillOutSpecGen(s *specgen.SpecGenerator, c *ContainerCLIOpts, args []string
if s.LogConfiguration == nil {
s.LogConfiguration = &specgen.LogConfig{}
}
- s.LogConfiguration.Driver = define.KubernetesLogging
+
if ld := c.LogDriver; len(ld) > 0 {
s.LogConfiguration.Driver = ld
}