5

我创建了一个 Docker 映像,我想使用 Terraform 在 GCP 中运行。我已将图像标记并推送到 GCR,如下所示:

docker tag carlspring/hello-spring-boot:1.0 eu.gcr.io/${PROJECT_ID}/carlspring/hello-spring-boot:1.0
docker push eu.gcr.io/carlspring/carlspring/hello-spring-boot:1.0

我有以下代码:

provider "google" {
  // Set this to CREDENTIALS
  credentials = file("credentials.json")

  // Set this to PROJECT_ID
  project = "carlspring"
  region  = "europe-west2"
  zone    = "europe-west2-a"
}

resource "google_compute_network" "vpc_network" {
  name = "carlspring-terraform-network"
}


resource "google_compute_instance" "docker" {
  count        = 1
  name         = "tf-docker-${count.index}"
  machine_type = "f1-micro"
  zone         = var.zone
  tags         = ["docker-node"]

  boot_disk {
    initialize_params {
      image = "carlspring/hello-spring-boot"
    }
  }
}

做完之后:

terraform init
terraform plan
terraform apply

我得到:

Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.

  Enter a value: yes

google_compute_instance.docker[0]: Creating...

Error: Error resolving image name 'carlspring/hello-spring-boot': Could not find image or family carlspring/hello-spring-boot

  on main.tf line 18, in resource "google_compute_instance" "docker":
  18: resource "google_compute_instance" "docker" {

我在网上看到的示例要么使用 K8s,要么启动运行 Linux 的 VM 映像,其中安装了 Docker 并且正在启动映像。我不能简单地使用我自己的容器来启动实例吗?

4

4 回答 4

5

google_compute_instance需要一个 VM 映像,而不是 Docker 映像。如果您想将 Docker 映像部署到 GCP,最简单的选择是 Cloud Run。要将它与 Terraform 一起使用,您需要cloud_run_service

例如:

resource "google_cloud_run_service" "default" {
  name     = "cloudrun-srv"
  location = "us-central1"

  template {
    spec {
      containers {
        image = "eu.gcr.io/carlspring/carlspring/hello-spring-boot:1.0"
      }
    }
  }

  traffic {
    percent         = 100
    latest_revision = true
  }
}

请注意,我使用eu.gcr.io/carlspring/carlspring/hello-spring-boot:1.0而不是carlspring/hello-spring-boot. 您必须使用完全限定名称作为指向 Docker Hub 的短点,在该位置找不到您的图像。

于 2020-03-13T00:22:40.107 回答
3

Terraform 可用于使用 Docker Image 创建 GCP VM 实例。这是一个例子:https ://github.com/terraform-providers/terraform-provider-google/issues/1022#issuecomment-475383003

希望这可以帮助。

于 2020-03-13T13:45:19.110 回答
2

以下行表示图像不存在:

Error: Error resolving image name 'carlspring/hello-spring-boot': Could not find image or family carlspring/hello-spring-boot

您应该将图像标记为eu.gcr.io/carlspring/hello-spring-boot:1.0.

或者,将boot_disk块中的图像参考更改为eu.gcr.io/carlspring/carlspring/hello-spring-boot:1.0.

于 2020-03-13T00:09:59.767 回答
0

您可以使用 GCE 中的虚拟机来执行此操作,该虚拟机的操作系统基于 Google 提供的容器操作系统映像。然后,您可以使用此 terraform 模块来促进容器映像的获取和运行。

于 2021-03-19T01:51:58.693 回答