File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -218,6 +218,9 @@ skipper_routesrv_log_level: "INFO"
218
218
# skipper-ingress component pod-deletion-cost-controller
219
219
skipper_pod_deletion_cost_controller_memory : 200Mi
220
220
skipper_pod_deletion_cost_controller_cpu : 50m
221
+ # vpa min values
222
+ skipper_pod_deletion_cost_controller_memory_min : 128Mi
223
+ skipper_pod_deletion_cost_controller_cpu_min : 25m
221
224
# klog style -v=0
222
225
skipper_pod_deletion_cost_controller_log_v : " 0"
223
226
@@ -1102,4 +1105,3 @@ sysctl_settings: ""
1102
1105
1103
1106
# enables/disables the minDomains field for pod topology spread.
1104
1107
min_domains_in_pod_topology_spread_enabled : " true"
1105
-
Original file line number Diff line number Diff line change
1
+ apiVersion : autoscaling.k8s.io/v1
2
+ kind : VerticalPodAutoscaler
3
+ metadata :
4
+ name : pod-deletion-cost-controller-vpa
5
+ namespace : kube-system
6
+ labels :
7
+ application : skipper-ingress
8
+ component : pod-deletion-cost-controller
9
+ spec :
10
+ targetRef :
11
+ apiVersion : apps/v1
12
+ kind : Deployment
13
+ name : pod-deletion-cost-controller
14
+ updatePolicy :
15
+ updateMode : Auto
16
+ resourcePolicy :
17
+ containerPolicies :
18
+ - containerName : pod-deletion-cost-controller
19
+ minAllowed :
20
+ memory : " {{ .Cluster.ConfigItems.skipper_pod_deletion_cost_controller_memory_min }}"
21
+ cpu : " {{ .Cluster.ConfigItems.skipper_pod_deletion_cost_controller_cpu_min }}"
You can’t perform that action at this time.
0 commit comments