File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 3
3
## master / unreleased
4
4
* [ CHANGE] Use port number for prometheus port annotations. #288
5
5
* [ CHANGE] Disable ingester startup probes by default. #286
6
+ * [ CHANGE] Moved HPA memory specification to be the first item in the list. #284
6
7
* [ FEATURE] Optionally manage cortex config as configmap. #280
7
8
* [ ENHANCEMENT] Upgrade to Cortex v1.11.0 #272
8
9
Original file line number Diff line number Diff line change @@ -15,18 +15,18 @@ spec:
15
15
minReplicas : {{ .minReplicas }}
16
16
maxReplicas : {{ .maxReplicas }}
17
17
metrics :
18
- {{- with .targetCPUUtilizationPercentage }}
18
+ {{- with .targetMemoryUtilizationPercentage }}
19
19
- type : Resource
20
20
resource :
21
- name : cpu
21
+ name : memory
22
22
target :
23
23
type : Utilization
24
24
averageUtilization : {{ . }}
25
25
{{- end }}
26
- {{- with .targetMemoryUtilizationPercentage }}
26
+ {{- with .targetCPUUtilizationPercentage }}
27
27
- type : Resource
28
28
resource :
29
- name : memory
29
+ name : cpu
30
30
target :
31
31
type : Utilization
32
32
averageUtilization : {{ . }}
Original file line number Diff line number Diff line change @@ -15,18 +15,18 @@ spec:
15
15
minReplicas : {{ .minReplicas }}
16
16
maxReplicas : {{ .maxReplicas }}
17
17
metrics :
18
- {{- with .targetCPUUtilizationPercentage }}
18
+ {{- with .targetMemoryUtilizationPercentage }}
19
19
- type : Resource
20
20
resource :
21
- name : cpu
21
+ name : memory
22
22
target :
23
23
type : Utilization
24
24
averageUtilization : {{ . }}
25
25
{{- end }}
26
- {{- with .targetMemoryUtilizationPercentage }}
26
+ {{- with .targetCPUUtilizationPercentage }}
27
27
- type : Resource
28
28
resource :
29
- name : memory
29
+ name : cpu
30
30
target :
31
31
type : Utilization
32
32
averageUtilization : {{ . }}
Original file line number Diff line number Diff line change @@ -15,18 +15,18 @@ spec:
15
15
minReplicas : {{ .minReplicas }}
16
16
maxReplicas : {{ .maxReplicas }}
17
17
metrics :
18
- {{- with .targetCPUUtilizationPercentage }}
18
+ {{- with .targetMemoryUtilizationPercentage }}
19
19
- type : Resource
20
20
resource :
21
- name : cpu
21
+ name : memory
22
22
target :
23
23
type : Utilization
24
24
averageUtilization : {{ . }}
25
25
{{- end }}
26
- {{- with .targetMemoryUtilizationPercentage }}
26
+ {{- with .targetCPUUtilizationPercentage }}
27
27
- type : Resource
28
28
resource :
29
- name : memory
29
+ name : cpu
30
30
target :
31
31
type : Utilization
32
32
averageUtilization : {{ . }}
You can’t perform that action at this time.
0 commit comments