File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
config/helm/aws-node-termination-handler Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 82
82
value : {{ .Values.enablePrometheusServer | quote }}
83
83
- name : PROMETHEUS_SERVER_PORT
84
84
value : {{ .Values.prometheusServerPort | quote }}
85
+ # [DEPRECATED] Use CHECK_TAG_BEFORE_DRAINING instead
86
+ - name : CHECK_ASG_TAG_BEFORE_DRAINING
87
+ value : {{ .Values.checkASGTagBeforeDraining | quote }}
85
88
- name : CHECK_TAG_BEFORE_DRAINING
86
89
value : {{ .Values.checkTagBeforeDraining | quote }}
90
+ # [DEPRECATED] Use MANAGED_TAG instead
91
+ - name : MANAGED_ASG_TAG
92
+ value : {{ .Values.managedAsgTag | quote }}
87
93
- name : MANAGED_TAG
88
94
value : {{ .Values.managedTag | quote }}
89
95
- name : USE_PROVIDER_ID
Original file line number Diff line number Diff line change @@ -173,9 +173,15 @@ queueURL: ""
173
173
# The maximum amount of parallel event processors to handle concurrent events
174
174
workers : 10
175
175
176
+ # [DEPRECATED] Use checkTagBeforeDraining instead
177
+ checkASGTagBeforeDraining : true
178
+
176
179
# If true, check that the instance is tagged with "aws-node-termination-handler/managed" as the key before draining the node
177
180
checkTagBeforeDraining : true
178
181
182
+ # [DEPRECATED] Use managedTag instead
183
+ managedAsgTag : " aws-node-termination-handler/managed"
184
+
179
185
# The tag to ensure is on a node if checkTagBeforeDraining is true
180
186
managedTag : " aws-node-termination-handler/managed"
181
187
You can’t perform that action at this time.
0 commit comments