Skip to content

Commit

Permalink
Node group workers on demand
Browse files Browse the repository at this point in the history
  • Loading branch information
tschneider-aneo committed Dec 17, 2024
1 parent 2d79d96 commit ad1cdc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrastructure/quick-deploy/aws/parameters.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ eks_managed_node_groups = {
launch_template_description = "Node group for ArmoniK Compute-plane pods"
ami_type = "AL2_x86_64"
instance_types = ["c5a.4xlarge"]
capacity_type = "SPOT"
capacity_type = "ON_DEMAND" # "SPOT"
min_size = 8
desired_size = 8
max_size = 8
labels = {
service = "workers"
"node.kubernetes.io/lifecycle" = "spot"
"node.kubernetes.io/lifecycle" = "ondemand" # "spot"
}
taints = {
dedicated = {
Expand Down

0 comments on commit ad1cdc5

Please sign in to comment.