Commit 9f37044 1 parent edb67c8 commit 9f37044 Copy full SHA for 9f37044
File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ type: application
21
21
# This is the chart version. This version number should be incremented each time you make changes
22
22
# to the chart and its templates, including the app version.
23
23
# Versions are expected to follow Semantic Versioning (https://semver.org/)
24
- version : 0.3.2
24
+ version : 0.3.4
25
25
26
26
# This is the version number of the application being deployed. This version number should be
27
27
# incremented each time you make changes to the application. Versions are not expected to
28
28
# follow Semantic Versioning. They should reflect the version the application is using.
29
29
# It is recommended to use it with quotes.
30
- appVersion : " 0.44 "
30
+ appVersion : " 0.48 "
Original file line number Diff line number Diff line change 1
1
# gofer
2
2
3
- ![ Version: 0.3.2 ] ( https://img.shields.io/badge/Version-0.3.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.44 ] ( https://img.shields.io/badge/AppVersion-0.44 -informational?style=flat-square )
3
+ ![ Version: 0.3.4 ] ( https://img.shields.io/badge/Version-0.3.4 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.48 ] ( https://img.shields.io/badge/AppVersion-0.48 -informational?style=flat-square )
4
4
5
5
A Helm chart for deploying gofer to Kubernetes
6
6
Original file line number Diff line number Diff line change 1
1
{{- if .Values.autoscaling.enabled }}
2
- apiVersion : autoscaling/v2beta1
2
+ apiVersion : autoscaling/v2
3
3
kind : HorizontalPodAutoscaler
4
4
metadata :
5
5
name : {{ include "gofer.fullname" . }}
@@ -17,12 +17,16 @@ spec:
17
17
- type : Resource
18
18
resource :
19
19
name : cpu
20
- targetAverageUtilization : {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
20
+ target :
21
+ type : Utilization
22
+ averageUtilization : {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
21
23
{{- end }}
22
24
{{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
23
25
- type : Resource
24
26
resource :
25
27
name : memory
26
- targetAverageUtilization : {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
28
+ target :
29
+ type : AverageValue
30
+ averageValue : {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
27
31
{{- end }}
28
32
{{- end }}
You can’t perform that action at this time.
0 commit comments