We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88f274a commit b5b6835Copy full SHA for b5b6835
terraform-modules/aws/helm/github_runner/main.tf
@@ -145,7 +145,7 @@ resource "kubernetes_manifest" "runnerDeployment" {
145
}
146
147
spec = {
148
- replicas = 1
+ replicas = var.runner_number_of_replicas
149
150
template ={
151
terraform-modules/aws/helm/github_runner/variables.tf
@@ -59,3 +59,9 @@ variable "runner_deployment_name" {
59
description = "Runner config. The runner CRD deployment name."
60
default = "runnerdeploy"
61
62
+
63
+variable "runner_number_of_replicas" {
64
+ type = number
65
+ description = "Runner config. The number of runner replicas to create"
66
+ default = 1
67
+}
0 commit comments