If I have a lifecycle policy on my AWS ECR. Are those tasks case-sensitive? As an example, say I were to have the following policy:
{
"action": {
"type": "expire"
},
"selection": {
"countType": "sinceImagePushed",
"countUnit": "days",
"countNumber": 15,
"tagStatus": "tagged",
"tagPrefixList": [
"ABCD-"
]
},
"description": "Expire ABCD images older than 15 days",
"rulePriority": 3
}
Now if I have two images which are older than 15 days in my registry tagged
abcd-1.0.0
ABCD-1.1.1
Would it expire both of these images, or just ABCD-1.1.1
?