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
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
263
}
255
264
265
+
// setting policy file will turn the advanced auditing on
validationResults.AddWarnings(field.Forbidden(fldPath.Child("policyFile"), "both policyFile and policyConfiguration are specified, the latter will take precedence"))
validationResults.AddErrors(field.Invalid(fldPath.Child("policyConfiguration"), config.PolicyFile, "a policy configuration with 0 policies is not valid"))
0 commit comments