File tree Expand file tree Collapse file tree 2 files changed +46
-1
lines changed
Expand file tree Collapse file tree 2 files changed +46
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,51 @@ Helm chart for devopscorner services (Semantic Version)
77- [ Helm] ( https://helm.sh/docs/intro/install/ ) CLI
88- [ Helmfile] ( https://github.com/roboll/helmfile ) CLI
99
10+ ## Version 1.5
11+
12+ ### Features
13+
14+ - Migrate for HPA (horizontal pods autoscaller)
15+ ```
16+ ----------
17+ before
18+ ----------
19+ metrics:
20+ {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
21+ - type: Resource
22+ resource:
23+ name: cpu
24+ targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
25+ {{- end }}
26+ {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
27+ - type: Resource
28+ resource:
29+ name: memory
30+ targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
31+ {{- end }}
32+
33+ ----------
34+ after
35+ ----------
36+ metrics:
37+ {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
38+ - type: Resource
39+ resource:
40+ name: cpu
41+ target:
42+ type:
43+ averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
44+ {{- end }}
45+ {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
46+ - type: Resource
47+ resource:
48+ name: memory
49+ target:
50+ type:
51+ averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
52+ {{- end }}
53+ ```
54+
1055
1156## Version 1.4
1257
Original file line number Diff line number Diff line change 33![ all contributors] ( https://img.shields.io/github/contributors/devopscorner/devopscorner-helm )
44![ tags] ( https://img.shields.io/github/v/tag/devopscorner/devopscorner-helm?sort=semver )
55![ download all] ( https://img.shields.io/github/downloads/devopscorner/devopscorner-helm/total.svg )
6- ![ download latest] ( https://img.shields.io/github/downloads/devopscorner/devopscorner-helm/1.4 .0/total )
6+ ![ download latest] ( https://img.shields.io/github/downloads/devopscorner/devopscorner-helm/1.5 .0/total )
77![ view] ( https://views.whatilearened.today/views/github/devopscorner/devopscorner-helm.svg )
88![ clone] ( https://img.shields.io/badge/dynamic/json?color=success&label=clone&query=count&url=https://raw.githubusercontent.com/devopscorner/devopscorner-helm/master/clone.json?raw=True&logo=github )
99![ issues] ( https://img.shields.io/github/issues/devopscorner/devopscorner-helm )
You can’t perform that action at this time.
0 commit comments