Skip to content

Commit 3bfcd5b

Browse files
authored
Fix cluster priority expander to allow priority of 100 (#2343)
1 parent 4a5f7ec commit 3bfcd5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manager/manifests/cluster-autoscaler.yaml.j2

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ metadata:
137137
namespace: kube-system
138138
data:
139139
priorities: |-
140-
{% for p in range(1, 100) %}
140+
{% for p in range(1, 101) %}
141141
{% set found = {'priority': False} %}
142142
{% for ng in config['node_groups'] %}
143143
{% if ng['priority'] == p %}

0 commit comments

Comments
 (0)