Skip to content

Commit

Permalink
Merge pull request #1508 from equinor/new-arm-pipeline-pool-c2-and-pl…
Browse files Browse the repository at this point in the history
…atform

add extra arm pipeline pool to c2 and platform
  • Loading branch information
nilsgstrabo authored Nov 29, 2024
2 parents 906336c + d8615e8 commit c8fabcc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
11 changes: 10 additions & 1 deletion terraform/subscriptions/s940/c2/pre-clusters/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,18 @@ variable "nodepools" {

}
armpipepool = {
vm_size = "Standard_E16ps_v5"
min_count = 0
max_count = 8
node_labels = {
"nodepooltasks" = "jobs"
}
node_taints = ["nodepooltask-disabled=jobs:NoSchedule"]
}
armpipepool2 = {
vm_size = "Standard_E16ps_v5"
min_count = 1
max_count = 16
max_count = 8
node_labels = {
"nodepooltasks" = "jobs"
}
Expand Down
11 changes: 10 additions & 1 deletion terraform/subscriptions/s940/prod/pre-clusters/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,18 @@ variable "nodepools" {

}
armpipepool = {
vm_size = "Standard_E16ps_v5"
min_count = 0
max_count = 8
node_labels = {
"nodepooltasks" = "jobs"
}
node_taints = ["nodepooltasks=jobs:NoSchedule"]
}
armpipepool2 = {
vm_size = "Standard_E16ps_v5"
min_count = 1
max_count = 16
max_count = 8
node_labels = {
"nodepooltasks" = "jobs"
}
Expand Down

0 comments on commit c8fabcc

Please sign in to comment.