-
Notifications
You must be signed in to change notification settings - Fork 319
Description
Required Info:
version 3.14.1 (and others)
Bug description and how to reproduce:
neither source images nor their details are available
get the official image (I'm using eu-west-1)
pcluster list-official-images --os ubuntu2404 --architecture x86_64 --query 'images[0].amiId'
"ami-0c961907c0fe2c2fb"
get the source image (the same parallel cluster image but in another region)
aws ec2 describe-images --image-ids ami-0c961907c0fe2c2fb --query 'Images[0].[SourceImageRegion, SourceImageId]'
[
"us-east-1",
"ami-0351b69327a56a512"
]
get the source for that
aws --region us-east-1 ec2 describe-images --image-ids ami-0351b69327a56a512 --query 'Images[0].[SourceImageRegion, SourceImageId]'
[
"us-east-1",
"ami-0f8ec35c46cb54ec6"
]
trying to get that fails
aws --region us-east-1 ec2 describe-images --image-ids ami-0f8ec35c46cb54ec6 --query 'Images[0].[SourceImageRegion, SourceImageId]'
null
the source image is not or is no longer (I cannot tell) available. maybe its a private image you create? I cannot tell. What is this image?
Can these original source images be kept (for reproducability) and their description noted (so we can try building from newer versions)
Additional context:
I would like to alter the ubuntu image before creating a parallelcluster image. I want to install a package which, once installed, will enable additional features in slurm (slurm will find and use them during the install recipe)