You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #16128 from soltysh/advanced_audit
Automatic merge from submit-queue (batch tested with PRs 16480, 16486, 16270, 16128, 16489)
Advanced audit as tech preview in origin
@sttts this enables the advance auditing features in origin, ptal
@openshift/api-review for config changes
Copy file name to clipboardexpand all lines: pkg/cmd/server/api/v1/swagger_doc.go
+5
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,11 @@ var map_AuditConfig = map[string]string{
90
90
"maximumFileRetentionDays": "Maximum number of days to retain old log files based on the timestamp encoded in their filename.",
91
91
"maximumRetainedFiles": "Maximum number of old log files to retain.",
92
92
"maximumFileSizeMegabytes": "Maximum size in megabytes of the log file before it gets rotated. Defaults to 100MB.",
93
+
"policyFile": "PolicyFile is a path to the file that defines the audit policy configuration.",
94
+
"policyConfiguration": "PolicyConfiguration is an embedded policy configuration object to be used as the audit policy configuration. If present, it will be used instead of the path to the policy file.",
95
+
"logFormat": "Format of saved audits (legacy or json).",
96
+
"webHookKubeConfig": "Path to a .kubeconfig formatted file that defines the audit webhook configuration.",
97
+
"webHookMode": "Strategy for sending audit events (block or batch).",
validationResults.AddErrors(field.Invalid(fldPath.Child("maximumFileSizeMegabytes"), config.MaximumFileSizeMegabytes, "must be greater than or equal to 0"))
254
261
}
255
262
263
+
// setting policy file will turn the advanced auditing on
validationResults.AddErrors(field.Invalid(fldPath.Child("policyConfiguration"), config.PolicyFile, "a policy configuration with 0 policies is not valid"))
286
+
}
287
+
}
288
+
}
289
+
290
+
iflen(config.AuditFilePath) ==0 {
291
+
validationResults.AddErrors(field.Required(fldPath.Child("auditFilePath"), "advanced audit requires a separate log file"))
0 commit comments