기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
사용자 지정 AMI 문제 해결
이 섹션에서는 사용자 지정 AMI 문제에 대한 가능한 문제 해결 팁을 제공합니다.
사용자 지정 를 사용하면 다음 경고가 AMI표시됩니다.
"validationMessages": [ { "level": "WARNING", "type": "CustomAmiTagValidator", "message": "The custom AMI may not have been created by pcluster. You can ignore this warning if the AMI is shared or copied from another pcluster AMI. If the AMI is indeed not created by pcluster, cluster creation will fail. If the cluster creation fails, please go to https://docs.aws.amazon.com/parallelcluster/latest/ug/troubleshooting.html#troubleshooting-stack-creation-failures for troubleshooting." }, { "level": "WARNING", "type": "AmiOsCompatibleValidator", "message": "Could not check node AMI ami-0000012345 OS and cluster OS alinux2 compatibility, please make sure they are compatible before cluster creation and update operations." } ]
올바른 AMI 가 사용되고 있다고 확신하는 경우 이러한 경고를 무시할 수 있습니다.
향후 이러한 경고를 보지 않으려면 다음 태그AMI로 사용자 지정에 태그를 지정합니다.
는 my-os
alinux2
, ubuntu2004
, 또는 ubuntu2204
중 하나rhel8
이며 "3.7.0"
는 사용 중인 pcluster
버전입니다.
$
aws ec2 create-tags \ --resources
ami-yourcustomAmi
\ --tags Key="parallelcluster:version",Value="3.7.0"
Key="parallelcluster:os",Value="my-os"