mirror of
https://github.com/gwg313/homelab-gitops.git
synced 2026-06-05 23:11:01 +00:00
21 lines
473 B
YAML
21 lines
473 B
YAML
apiVersion: kyverno.io/v2beta1
|
|
kind: ClusterCleanupPolicy
|
|
metadata:
|
|
name: purge-terminal-pods
|
|
spec:
|
|
match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- Pod
|
|
schedule: "*/15 * * * *"
|
|
conditions:
|
|
all:
|
|
- key: "{{ request.object.status.phase }}"
|
|
operator: AnyIn
|
|
value:
|
|
- Succeeded
|
|
- Failed
|
|
- key: "{{ request.object.metadata.creationTimestamp }}"
|
|
operator: DurationGreaterThan
|
|
value: 30m
|