ECR 生命周期任务标签前缀匹配是否区分大小写?

Are ECR Lifecycle Tasks tag prefix matches case-sensitive?

如果我的 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

Docker 标签区分大小写:

A quick post about pulling docker containers (this applies to docker run too)…when specifying the container image, the container image name and tag are case sensitive. We’re not going to discuss how much time troubleshooting it too me to figure this out…but let’s just say it’s more than I care to admit publicly.

https://www.sqlservercentral.com/blogs/docker-image-tags-are-case-sensitive