本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
使用 Terraform 创建自定义 AMI
使用时 AWS ParallelCluster,您只需为创建或更新 AWS ParallelCluster 映像和集群时创建的 AWS 资源付费。有关更多信息,请参阅 AWS 使用的服务 AWS ParallelCluster。
先决条件
-
Terraform v1.5.7+ 已安装。
-
AWS ParallelCluster APIv3.8.0+ 已部署在您的账户中。请参阅 使用 Terraform 创建集群。
-
具有调用 ParallelCluster API 权限的 IAM 角色。请参阅 所需的权限。
定义一个 Terraform 项目
在本教程中,您将定义一个简单的 Terraform 项目来部署自定义 ParallelCluster AMI。
创建一个名为的目录
my-amis
。您创建的所有文件都将位于此目录中。
创建文件
terraform.tf
以导入 ParallelCluster 提供程序。terraform { required_version = ">= 1.5.7" required_providers { aws-parallelcluster = { source = "aws-tf/aws-parallelcluster" version = "1.0.0" } } }
创建用于配置 ParallelCluster 和 AWS 提供程序的文件
providers.tf
。provider "aws" { region = var.region profile = var.profile } provider "aws-parallelcluster" { region = var.region profile = var.profile api_stack_name = var.api_stack_name use_user_role = true }
使用 ParallelCluster模块创建文件
main.tf
以定义资源。要查看可在
image_configuration
元素中设置的图像属性,请参阅构建映像配置文件。要查看可以为图像创建设置的选项,例如
image_id
和rollback_on_failure
,请参阅pcluster build-image。data "aws-parallelcluster_list_official_images" "parent_image" { region = var.region os = var.os architecture = var.architecture } resource "aws-parallelcluster_image" "demo01" { image_id = "demo01" image_configuration = yamlencode({ "Build":{ "InstanceType": "c5.2xlarge", "ParentImage": data.aws-parallelcluster_list_official_images.parent_image.official_images[0].amiId, "UpdateOsPackages": {"Enabled": false} } }) rollback_on_failure = false }
创建文件
variables.tf
以定义可以为此项目注入的变量。variable "region" { description = "The region the ParallelCluster API is deployed in." type = string default = "us-east-1" } variable "profile" { type = string description = "The AWS profile used to deploy the clusters." default = null } variable "api_stack_name" { type = string description = "The name of the CloudFormation stack used to deploy the ParallelCluster API." default = "ParallelCluster" } variable "api_version" { type = string description = "The version of the ParallelCluster API." } variable "os" { type = string description = "The OS of the ParallelCluster image." } variable "architecture" { type = string description = "The architecture of the ParallelCluster image." }
创建文件
terraform.tfvars
以设置变量的任意值。在下面的文件中,
us-east-1
基于适用于 x86_64 架构的 Amazon Linux 2,使用现有 ParallelCluster API 3.10.0 部署自定义 AMI,该API 3.10.0 已经部署在堆栈名称中。us-east-1
MyParallelClusterAPI-310
region = "us-east-1" api_stack_name = "MyParallelClusterAPI-310" api_version = "3.10.0" os = "alinux2" architecture = "x86_64"
创建文件
outputs.tf
以定义此项目返回的输出。output "parent_image" { value = data.aws-parallelcluster_list_official_images.parent_image.official_images[0] } output "custom_image" { value = aws-parallelcluster_image.demo01 }
项目目录是:
my-amis ├── main.tf - Terraform entrypoint where the ParallelCluster module is configured. ├── outputs.tf - Defines the cluster as a Terraform output. ├── providers.tf - Configures the providers: ParallelCluster and AWS. ├── terraform.tf - Import the ParallelCluster provider. ├── terraform.tfvars - Defines values for variables, e.g. region, PCAPI stack name. └── variables.tf - Defines the variables, e.g. region, PCAPI stack name.
部署 AMI
要部署 AMI,请按顺序运行标准的 Terraform 命令。
构建项目:
terraform init
定义部署计划:
terraform plan -out tfplan
部署计划:
terraform apply tfplan
所需的权限
您需要以下权限才能使用 Terraform 部署自定义 AMI:
-
担任 ParallelCluster API 角色,该角色负责与 ParallelCluster API 交互
-
描述 ParallelCluster API 的 AWS CloudFormation 堆栈,以验证其存在并检索其参数和输出
{ "Version": "2012-10-17", "Statement": [ { "Action": "sts:AssumeRole", "Resource": "arn:
PARTITION
:iam::ACCOUNT
:role/PCAPIUserRole-*", "Effect": "Allow", "Sid": "AssumePCAPIUserRole" }, { "Action": [ "cloudformation:DescribeStacks" ], "Resource": "arn:PARTITION
:cloudformation:REGION
:ACCOUNT
:stack/*", "Effect": "Allow", "Sid": "CloudFormation" } ] }