Skip to content

Commit

Permalink
scale down runners
Browse files Browse the repository at this point in the history
  • Loading branch information
kjubybot committed Feb 26, 2025
1 parent 726567d commit 131dfcf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions k8s/timoni/runners.cue
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,36 @@ runners: {
image: "codebattle/python"
version: "3.12.2"
lang: "python"
replicas: 16
replicas: 1 //16
}
"cpp": {
image: "codebattle/cpp"
version: "20"
lang: "cpp"
replicas: 16
replicas: 1 //16
}
"csharp": {
image: "codebattle/csharp"
version: "8.0.201"
lang: "csharp"
replicas: 10
replicas: 1 //10
}
"java": {
image: "codebattle/java"
version: "21"
lang: "java"
replicas: 10
replicas: 1 //10
}
"golang": {
image: "codebattle/golang"
version: "1.22.1"
lang: "golang"
replicas: 8
replicas: 1 //8
}
"kotlin": {
image: "codebattle/kotlin"
version: "1.9.23"
lang: "kotlin"
replicas: 4
replicas: 1 //4
}
}

0 comments on commit 131dfcf

Please sign in to comment.