File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apiVersion : v2
22name : coredns
3- version : 1.16.7
3+ version : 1.17.0
44appVersion : 1.8.7
55home : https://coredns.io
66icon : https://coredns.io/images/CoreDNS_Colour_Horizontal.png
Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ The command removes all the Kubernetes components associated with the chart and
113113| ` autoscaler.max ` | Max size of replicaCount | 0 (aka no max) |
114114| ` autoscaler.includeUnschedulableNodes ` | Should the replicas scale based on the total number or only schedulable nodes | ` false ` |
115115| ` autoscaler.preventSinglePointFailure ` | If true does not allow single points of failure to form | ` true ` |
116+ | ` autoscaler.customFlags ` | A list of custom flags to pass into cluster-proportional-autoscaler | (no args) |
116117| ` autoscaler.image.repository ` | The image repository to pull autoscaler from | k8s.gcr.io/cluster-proportional-autoscaler-amd64 |
117118| ` autoscaler.image.tag ` | The image tag to pull autoscaler from | ` 1.8.1 ` |
118119| ` autoscaler.image.pullPolicy ` | Image pull policy for the autoscaler | IfNotPresent |
Original file line number Diff line number Diff line change 8686 - --target=Deployment/{{ default (include "coredns.fullname" .) .Values.deployment.name }}
8787 - --logtostderr=true
8888 - --v=2
89+ {{- if .Values.autoscaler.customFlags }}
90+ {{ toYaml .Values.autoscaler.customFlags | indent 10 }}
91+ {{- end }}
8992{{- end }}
Original file line number Diff line number Diff line change @@ -258,6 +258,11 @@ autoscaler:
258258 # If true does not allow single points of failure to form
259259 preventSinglePointFailure : true
260260
261+ # # Optionally specify some extra flags to pass to cluster-proprtional-autoscaler.
262+ # # Useful for e.g. the nodelabels flag.
263+ # customFlags:
264+ # - --nodelabels=topology.kubernetes.io/zone=us-east-1a
265+
261266 image :
262267 repository : k8s.gcr.io/cluster-proportional-autoscaler-amd64
263268 tag : " 1.8.1"
You can’t perform that action at this time.
0 commit comments