File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ fluentdElasticsearch:
2222 requests :
2323 cpu : 100m
2424 memory : 200Mi
25+ hpa :
26+ maxReplicas : 10
27+ minReplicas : 2
28+ targetCPUUtilizationPercentage : 80
2529kubernetesClusterDomain : cluster.local
2630myConfig :
2731 dummyconfigmapkey : dummyconfigmapvalue
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ metadata:
55 labels :
66 {{- include "operator.labels" . | nindent 4 }}
77spec :
8- maxReplicas : 10
9- minReplicas : 2
108 scaleTargetRef :
119 apiVersion : apps/v1
1210 kind : Deployment
1311 name : myapp
14- targetCPUUtilizationPercentage : 80
12+ minReplicas : {{ .Values.appHpa.minReplicas }}
13+ maxReplicas : {{ .Values.appHpa.maxReplicas }}
14+ targetCPUUtilizationPercentage : {{ .Values.appHpa.targetCPUUtilizationPercentage }}
Original file line number Diff line number Diff line change 1+ appHpa :
2+ maxReplicas : 10
3+ minReplicas : 2
4+ targetCPUUtilizationPercentage : 80
15configmapVars :
26 var4 : value for var4
37controllerManager :
You can’t perform that action at this time.
0 commit comments