Merge pull request #11390 from giuseppe/logging-passthrough

logging: new mode -l passthrough
This commit is contained in:
OpenShift Merge Robot
2021-09-29 15:33:06 -04:00
committed by GitHub
13 changed files with 74 additions and 24 deletions

View File

@ -1288,6 +1288,8 @@ func (r *ConmonOCIRuntime) sharedConmonArgs(ctr *Container, cuuid, bundlePath, p
logDriverArg = define.JournaldLogging
case define.NoLogging:
logDriverArg = define.NoLogging
case define.PassthroughLogging:
logDriverArg = define.PassthroughLogging
case define.JSONLogging:
fallthrough
//lint:ignore ST1015 the default case has to be here