Switch eventlogger to journald by default

[NO TESTS NEEDED] Since we are just testing the default.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2021-08-04 15:24:29 -04:00
committed by Nalin Dahyabhai
parent d1137664fe
commit 6b06e9b77c
14 changed files with 112 additions and 31 deletions

View File

@ -1,7 +1,12 @@
// +build !systemd
// +build !systemd !cgo
package config
const (
// DefaultLogDriver is the default type of log files
DefaultLogDriver = "k8s-file"
)
func defaultCgroupManager() string {
return CgroupfsCgroupsManager
}