mirror of
https://github.com/rancher/rke.git
synced 2025-08-31 22:46:25 +00:00
change enc provider arg, update defaults for audit log config
This commit is contained in:
committed by
Alena Prokharchyk
parent
843e14135f
commit
b9900f3b9c
@@ -76,7 +76,7 @@ const (
|
||||
KubeAPIArgAuditLogFormat = "audit-log-format"
|
||||
KubeAPIArgAuditPolicyFile = "audit-policy-file"
|
||||
DefaultKubeAPIArgAuditLogPathValue = "/var/log/kube-audit/audit-log.json"
|
||||
DefaultKubeAPIArgAuditPolicyFileValue = "/etc/kubernetes/audit.yaml"
|
||||
DefaultKubeAPIArgAuditPolicyFileValue = "/etc/kubernetes/audit-policy.yaml"
|
||||
)
|
||||
|
||||
type ExternalFlags struct {
|
||||
@@ -284,8 +284,8 @@ func newDefaultAuditPolicy() *auditv1.Policy {
|
||||
func newDefaultAuditLogConfig() *v3.AuditLogConfig {
|
||||
p := newDefaultAuditPolicy()
|
||||
c := &v3.AuditLogConfig{
|
||||
MaxAge: 5,
|
||||
MaxBackup: 5,
|
||||
MaxAge: 30,
|
||||
MaxBackup: 10,
|
||||
MaxSize: 100,
|
||||
Path: DefaultKubeAPIArgAuditLogPathValue,
|
||||
Format: "json",
|
||||
|
Reference in New Issue
Block a user