mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
* added conversion of overlay to patch strategic merge and modified unittest for the same * updated best practice policy
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
apiVersion: kyverno.io/v1
|
|
kind: ClusterPolicy
|
|
metadata:
|
|
name: add-safe-to-evict
|
|
annotations:
|
|
policies.kyverno.io/category: Workload Management
|
|
policies.kyverno.io/description: The Kubernetes cluster autoscaler does not evict pods that
|
|
use hostPath or emptyDir volumes. To allow eviction of these pods, the annotation
|
|
cluster-autoscaler.kubernetes.io/safe-to-evict=true must be added to the pods.
|
|
spec:
|
|
rules:
|
|
- name: annotate-empty-dir
|
|
match:
|
|
resources:
|
|
kinds:
|
|
- Pod
|
|
mutate:
|
|
patchStrategicMerge:
|
|
metadata:
|
|
annotations:
|
|
+(cluster-autoscaler.kubernetes.io/safe-to-evict): "true"
|
|
spec:
|
|
volumes:
|
|
- (emptyDir): {}
|
|
- name: annotate-host-path
|
|
match:
|
|
resources:
|
|
kinds:
|
|
- Pod
|
|
mutate:
|
|
patchStrategicMerge:
|
|
metadata:
|
|
annotations:
|
|
+(cluster-autoscaler.kubernetes.io/safe-to-evict): "true"
|
|
spec:
|
|
volumes:
|
|
- (hostPath):
|
|
path: "*"
|