Skip to content

Commit 566fa0d

Browse files
Merge pull request #18818 from openshift-cherrypick-robot/cherry-pick-18751-to-release-3.9
Automatic merge from submit-queue. [release-3.9] audit doesn't respect embedded config This is an automated cherry-pick of #18751 /assign deads2k
2 parents 9b766ba + 815221a commit 566fa0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/cmd/server/kubernetes/master/master_config.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -797,11 +797,11 @@ func GetAuditConfig(auditConfig configapi.AuditConfig) (audit.Backend, auditpoli
797797
// when a policy file is defined we enable the advanced auditing
798798
if auditConfig.PolicyConfiguration != nil || len(auditConfig.PolicyFile) > 0 {
799799
// policy configuration
800-
if auditConfig.PolicyConfiguration == nil {
801-
p, _ := auditpolicy.LoadPolicyFromFile(auditConfig.PolicyFile)
800+
if auditConfig.PolicyConfiguration != nil {
801+
p := auditConfig.PolicyConfiguration.(*auditinternal.Policy)
802802
policyChecker = auditpolicy.NewChecker(p)
803803
} else if len(auditConfig.PolicyFile) > 0 {
804-
p := auditConfig.PolicyConfiguration.(*auditinternal.Policy)
804+
p, _ := auditpolicy.LoadPolicyFromFile(auditConfig.PolicyFile)
805805
policyChecker = auditpolicy.NewChecker(p)
806806
}
807807

0 commit comments

Comments
 (0)