feat: Add support for Auto Scaling Group Instance Refresh for self-managed worker groups (#1224)

Co-authored-by: Thierno IB. BARRY <ibrahima.br@gmail.com>
This commit is contained in:
Benjamin Ash
2021-05-17 16:12:53 -04:00
committed by GitHub
parent 32f70afe60
commit 68e9df92c3
9 changed files with 360 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
variable "region" {
default = "us-west-2"
}
variable "aws_node_termination_handler_chart_version" {
description = "Version of the aws-node-termination-handler Helm chart to install."
default = "0.15.0"
}
variable "namespace" {
description = "Namespace for the aws-node-termination-handler."
default = "kube-system"
}
variable "serviceaccount" {
description = "Serviceaccount for the aws-node-termination-handler."
default = "aws-node-termination-handler"
}