21 lines
432 B
YAML
21 lines
432 B
YAML
|
|
apiVersion: autoscaling.k8s.io/v1
|
||
|
|
kind: VerticalPodAutoscaler
|
||
|
|
metadata:
|
||
|
|
name: zookeeper-vpa
|
||
|
|
namespace: freeleaps-data-platform
|
||
|
|
spec:
|
||
|
|
resourcePolicy:
|
||
|
|
containerPolicies:
|
||
|
|
- containerName: '*'
|
||
|
|
controlledResources:
|
||
|
|
- cpu
|
||
|
|
- memory
|
||
|
|
maxAllowed:
|
||
|
|
cpu: 200m
|
||
|
|
memory: 512Mi
|
||
|
|
targetRef:
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: StatefulSet
|
||
|
|
name: zookeeper
|
||
|
|
updatePolicy:
|
||
|
|
updateMode: "Auto"
|