Skip to content

Commit f7602dd

Browse files
Merge pull request #21080 from soltysh/bug1631087_3.11
Bug 1632155 - Accept logFormat when passed to audit config
2 parents 2a86335 + 67af498 commit f7602dd

File tree

1 file changed

+5
-1
lines changed
  • pkg/cmd/openshift-apiserver/openshiftapiserver/configprocessing

1 file changed

+5
-1
lines changed

pkg/cmd/openshift-apiserver/openshiftapiserver/configprocessing/audit.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ func GetAuditConfig(auditConfig configapi.AuditConfig) (audit.Backend, auditpoli
3838
// backwards compatible writer to regular log
3939
writer = cmdutil.NewGLogWriterV(0)
4040
}
41-
backend = auditlog.NewBackend(writer, auditlog.FormatJson, auditv1beta1.SchemeGroupVersion)
41+
format := auditConfig.LogFormat
42+
if len(format) == 0 {
43+
format = auditlog.FormatJson
44+
}
45+
backend = auditlog.NewBackend(writer, string(format), auditv1beta1.SchemeGroupVersion)
4246
policyChecker = auditpolicy.NewChecker(&auditinternal.Policy{
4347
// This is for backwards compatibility maintaining the old visibility, ie. just
4448
// raw overview of the requests comming in.

0 commit comments

Comments
 (0)