Skip to content
Snippets Groups Projects
Commit fc38b6d0 authored by Erwan Miran's avatar Erwan Miran
Browse files

Ability to define custom audit polcy rules

parent 855f2a55
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,12 @@ audit_log_maxbackups: 1
audit_log_maxsize: 100
# policy file
audit_policy_file: "{{ kube_config_dir }}/audit-policy/apiserver-audit-policy.yaml"
# custom audit policy rules (to replace the default ones)
# audit_policy_custom_rules: >
# - level: None
# users: []
# verbs: []
# resources: []
# audit log hostpath
audit_log_name: audit-logs
......
apiVersion: audit.k8s.io/v1beta1
kind: Policy
rules:
{% if audit_policy_custom_rules is defined and audit_policy_custom_rules != "" -%}
{{ audit_policy_custom_rules | indent(2, true) }}
{% else %}
# The following requests were manually identified as high-volume and low-risk,
# so drop them.
- level: None
......@@ -123,3 +126,4 @@ rules:
- level: Metadata
omitStages:
- "RequestReceived"
{% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment