Skip to content

Commit

Permalink
fix: update runner machine image to ubuntu-2004 to fix docker install…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
MeNsaaH committed Apr 29, 2022
1 parent 2cdcc5d commit 093ba99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ locals {
docker_machine_options = length(var.docker_machine_options) == 0 ? "" : local.docker_machine_options_string
runners_service_account = google_service_account.agent.email
runners_additional_volumes = local.runners_additional_volumes
runners_docker_machine_image = var.docker_machine_image
runners_docker_machine_image = var.runner_machine_image
runners_name = var.runners_name
runners_executor = var.runners_executor
runners_limit = var.runners_limit
Expand Down
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ variable "docker_machine_preemptible" {
default = false
}

variable "docker_machine_image" {
description = "A GCP custom image to use for spinning up docker-machines"
variable "runner_machine_image" {
description = "A GCP custom image to use for spinning up runners when using docker-machine"
type = string
default = ""
default = "ubuntu-os-cloud/global/images/ubuntu-2004-focal-v20220419"
}

variable "docker_machine_disk_type" {
Expand Down

0 comments on commit 093ba99

Please sign in to comment.