mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 09:26:54 +00:00
21 lines
493 B
YAML
21 lines
493 B
YAML
|
apiVersion: kyverno.io/v1
|
||
|
kind: ClusterPolicy
|
||
|
metadata:
|
||
|
name: structured-logs-sidecar
|
||
|
spec:
|
||
|
background: false
|
||
|
rules:
|
||
|
- name: add-annotations
|
||
|
match:
|
||
|
any:
|
||
|
- resources:
|
||
|
kinds:
|
||
|
- Deployment
|
||
|
annotations:
|
||
|
structured-logs: "true"
|
||
|
mutate:
|
||
|
patchStrategicMerge:
|
||
|
metadata:
|
||
|
annotations:
|
||
|
"fluentbit.io/exclude-{{request.object.spec.template.spec.containers[0].name}}": "true"
|