创建 GKE 集群并使用 Terraform 部署工作负载
在本快速入门中,您将学习如何创建 Google Kubernetes Engine (GKE) Autopilot 集群并使用 Terraform 部署工作负载。
基础设施即代码 (IaC) 是一种使用代码管理和预配软件基础设施资源的做法。Terraform 是一种常用的开源 IaC 工具,支持各种 Cloud 服务,包括 GKE。作为 GKE 平台管理员,您可以使用 Terraform 标准化 Kubernetes 集群的配置并简化 DevOps 工作流。如需了解详情,请参阅 Terraform 对 GKE 的支持。
目标
- 创建 IPv6 Virtual Private Cloud (VPC) 网络
- 创建 GKE Autopilot 集群
- 在集群上部署工作负载
- 使用 Service 公开工作负载
准备工作
请按照以下步骤启用 Kubernetes Engine API:
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the GKE API.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the GKE API.
-
Make sure that you have the following role or roles on the project: roles/container.admin, roles/compute.networkAdmin, roles/iam.serviceAccountUser
Check for the roles
-
In the Google Cloud console, go to the IAM page.
Go to IAM - Select the project.
-
In the Principal column, find all rows that identify you or a group that you're included in. To learn which groups you're included in, contact your administrator.
- For all rows that specify or include you, check the Role colunn to see whether the list of roles includes the required roles.
Grant the roles
-
In the Google Cloud console, go to the IAM page.
前往 IAM - 选择项目。
- 点击 授予访问权限。
-
在新的主账号字段中,输入您的用户标识符。 这通常是 Google 账号的电子邮件地址。
- 在选择角色列表中,选择一个角色。
- 如需授予其他角色,请点击 添加其他角色,然后添加其他各个角色。
- 点击保存。
您应该熟悉 Terraform 的基础知识。您可以使用以下资源:
-
准备环境
在本教程中,您将使用 Cloud Shell 来管理 Google Cloud 上托管的资源。Cloud Shell 中预安装了本教程所需的软件,包括 Terraform、kubectl
和 Google Cloud CLI。
点击 Cloud Shell 激活图标 激活 Cloud Shell ,从 Google Cloud 控制台启动 Cloud Shell 会话。此操作会在 Google Cloud 控制台的底部窗格中启动会话。
与此虚拟机关联的服务凭据会自动获取,因此您无需设置或下载服务账号密钥。
在运行命令之前,请使用以下命令在 gcloud CLI 中设置默认项目:
gcloud config set project PROJECT_ID
请将
PROJECT_ID
替换为您的项目 ID。克隆 GitHub 代码库:
git clone https://github.com/terraform-google-modules/terraform-docs-samples.git --single-branch
切换到工作目录:
cd terraform-docs-samples/gke/quickstart/autopilot
查看 Terraform 文件
Google Cloud 提供程序是一款插件,可让您使用 Terraform(HashiCorp 的基础设施即代码 [IaC] 工具)来管理和预配 Google Cloud 资源。它充当 Terraform 配置与 Google Cloud API 之间的桥梁,支持您以声明方式定义基础设施资源,例如虚拟机和网络。
查看
cluster.tf
文件:cat cluster.tf
输出类似于以下内容
此文件描述了以下资源:
- 启用了内部 IPv6 的 VPC 网络。如需将应用公开到互联网,请将
ipv6_access_type
更改为EXTERNAL
。如果您进行此项更改,则还必须在下一步中移除app.tf
文件中的networking.gke.io/load-balancer-type
注解。 - 双栈子网。
- 位于
us-central1
的双栈 Autopilot 集群。
- 启用了内部 IPv6 的 VPC 网络。如需将应用公开到互联网,请将
查看
app.tf
文件:cat app.tf
输出类似于以下内容:
此文件描述了以下资源:
- 具有示例容器映像的 Deployment。
- LoadBalancer 类型的 Service。该 Service 在端口 80 上公开 Deployment。如需将应用公开给互联网,请通过移除
networking.gke.io/load-balancer-type
注解来配置外部负载均衡器。
创建集群并部署应用
在 Cloud Shell 中,运行以下命令以验证 Terraform 是否可用:
terraform
输出应类似如下所示:
Usage: terraform [global options] <subcommand> [args] The available commands for execution are listed below. The primary workflow commands are given first, followed by less common or more advanced commands. Main commands: init Prepare your working directory for other commands validate Check whether the configuration is valid plan Show changes required by the current configuration apply Create or update infrastructure destroy Destroy previously-created infrastructure
初始化 Terraform:
terraform init
规划 Terraform 配置:
terraform plan
应用 Terraform 配置
terraform apply
出现提示时,输入
yes
以确认操作。此命令可能需要几分钟才能完成。输出类似于以下内容:Apply complete! Resources: 6 added, 0 changed, 0 destroyed.
验证集群是否正常运行
执行以下操作以确认集群正常运行:
进入 Google Cloud 控制台中的工作负载页面:
点击
example-hello-app-deployment
工作负载。系统会显示 Pod 详情页面。此页面显示有关 Pod 的信息,例如注解、Pod 上运行的容器、公开 Pod 的服务,以及 CPU、内存和磁盘用量等指标。进入 Google Cloud 控制台中的 Service 和 Ingress 页面。
点击
example-hello-app-loadbalancer
LoadBalancer Service。系统会显示 Service 详情页面。此页面显示有关 Service 的信息,例如与 Service 关联的 Pod 以及 Service 使用的端口。在外部端点部分中,点击 IPv4 link 或 IPv6 link 以在浏览器中查看 Service。输出类似于以下内容:
Hello, world! Version: 2.0.0 Hostname: example-hello-app-deployment-5df979c4fb-kdwgr
清理
为避免因本页中使用的资源导致您的 Google Cloud 账号产生费用,请按照以下步骤操作。
为避免因本页面中使用的资源导致您的 Google Cloud 账号产生费用,请按照以下步骤操作。
在 Cloud Shell 中,运行以下命令以删除 Terraform 资源:
terraform destroy --auto-approve
如果您看到类似于 The network resource 'projects/PROJECT_ID/global/networks/example-network' is already being used by 'projects/PROJECT_ID/global/firewalls/example-network-yqjlfql57iydmsuzd4ot6n5v'
的错误消息,请执行以下操作:
删除防火墙规则:
gcloud compute firewall-rules list --filter="NETWORK:example-network" --format="table[no-heading](name)" | xargs gcloud --quiet compute firewall-rules delete
重新运行 Terraform 命令:
terraform destroy --auto-approve
后续步骤
- 探索 Google Cloud 提供程序文档中的
google_container_cluster
和google_container_node_pool
资源。相应页面记录了 Google 在 Terraform 上支持的 GKE 集群和节点池配置的参数及属性。 - 请参阅 Terraform GKE 模块 GitHub 代码库中的持久配置示例。