如果我的 AWS ECR 上有生命周期策略。这些任务是否区分大小写?例如,假设我有以下政策:
{
"action": {
"type": "expire"
},
"selection": {
"countType": "sinceImagePushed",
"countUnit": "days",
"countNumber": 15,
"tagStatus": "tagged",
"tagPrefixList": [
"ABCD-"
]
},
"description": "Expire ABCD images older than 15 days",
"rulePriority": 3
}
现在,如果我的注册表中有两张超过 15 天的图像被标记
abcd-1.0.0
ABCD-1.1.1
它会过期这两个图像,还是只是ABCD-1.1.1
?