Skip to content

Commit

Permalink
fix(runner): fix setting runner ephemeral
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Boden committed Dec 12, 2023
1 parent 05b5d94 commit 660cfea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ resource "kubectl_manifest" "runner" {
repository = "${var.repo_owner}/${var.repo_name}"
labels = var.labels
containerMode = "kubernetes"
ephemeral = var.ephemeral
serviceAccountName = kubernetes_service_account.runner.metadata[0].name
workVolumeClaimTemplate = {
storageClassName = var.storage_class_name
Expand Down Expand Up @@ -87,7 +88,6 @@ resource "kubectl_manifest" "runner_autoscaler" {
minReplicas = var.min_count
maxReplicas = var.max_count
metrics = var.metrics
ephemeral = var.ephemeral
}
})
}

0 comments on commit 660cfea

Please sign in to comment.