File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11name : oauth2-proxy
2- version : 7.7.6
2+ version : 7.7.7
33apiVersion : v2
44appVersion : 7.6.0
55home : https://oauth2-proxy.github.io/oauth2-proxy/
@@ -35,7 +35,7 @@ kubeVersion: ">=1.9.0-0"
3535annotations :
3636 artifacthub.io/changes : |
3737 - kind: fixed
38- description: Updated the Redis chart to the latest version
38+ description: Reorder metrics list in HPA to avoid reconciliation loops with Argo CD
3939 links:
4040 - name: Github PR
41- url: https://github.com/oauth2-proxy/manifests/pull/218
41+ url: https://github.com/oauth2-proxy/manifests/pull/220
Original file line number Diff line number Diff line change @@ -19,20 +19,20 @@ spec:
1919 minReplicas : {{ .Values.autoscaling.minReplicas }}
2020 maxReplicas : {{ .Values.autoscaling.maxReplicas }}
2121 metrics :
22- {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
22+ {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
2323 - type : Resource
2424 resource :
25- name : cpu
25+ name : memory
2626 target :
2727 type : Utilization
28- averageUtilization : {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
28+ averageUtilization : {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
2929 {{- end }}
30- {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
30+ {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
3131 - type : Resource
3232 resource :
33- name : memory
33+ name : cpu
3434 target :
3535 type : Utilization
36- averageUtilization : {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
36+ averageUtilization : {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
3737 {{- end }}
3838{{- end }}
You can’t perform that action at this time.
0 commit comments