ECR (Elastic Container Registry)

Implementation details for API ecr

Coverage Overview

Elastic Container Registry (ECR) is supported by LocalStack only in the pro image.

AvailabilityTesting*
OperationImplementedImageInternal Test SuiteExternal Test SuiteTerraform ValidatedAWS ValidatedSnapshot TestedDetails
BatchCheckLayerAvailability
BatchDeleteImage✔️pro✔️✔️✔️Show Tests
BatchGetImage✔️pro✔️Show Tests
BatchGetRepositoryScanningConfiguration✔️pro✔️✔️✔️✔️Show Tests
CompleteLayerUpload
CreatePullThroughCacheRule
CreateRepository✔️pro✔️✔️✔️✔️✔️Show Tests
DeleteLifecyclePolicy✔️pro✔️✔️✔️Show Tests
DeletePullThroughCacheRule
DeleteRegistryPolicy✔️pro✔️✔️
DeleteRepository✔️pro✔️✔️✔️✔️✔️Show Tests
DeleteRepositoryPolicy✔️pro✔️✔️
DescribeImageReplicationStatus
DescribeImageScanFindings✔️pro
DescribeImages✔️pro✔️✔️✔️✔️✔️Show Tests
DescribePullThroughCacheRules
DescribeRegistry✔️pro✔️✔️
DescribeRepositories✔️pro✔️✔️✔️✔️✔️Show Tests
GetAuthorizationToken✔️pro✔️✔️✔️✔️✔️Show Tests
GetDownloadUrlForLayer
GetLifecyclePolicy✔️pro✔️✔️✔️Show Tests
GetLifecyclePolicyPreview✔️pro
GetRegistryPolicy✔️pro✔️✔️
GetRegistryScanningConfiguration✔️pro✔️✔️✔️✔️✔️Show Tests
GetRepositoryPolicy✔️pro✔️✔️✔️✔️✔️Show Tests
InitiateLayerUpload
ListImages✔️pro✔️✔️✔️Show Tests
ListTagsForResource✔️pro✔️✔️✔️✔️✔️Show Tests
PutImage✔️pro✔️✔️✔️Show Tests
PutImageScanningConfiguration✔️pro✔️✔️
PutImageTagMutability✔️pro✔️✔️Show Tests
PutLifecyclePolicy✔️pro✔️✔️✔️Show Tests
PutRegistryPolicy✔️pro✔️✔️
PutRegistryScanningConfiguration✔️pro✔️✔️✔️✔️✔️Show Tests
PutReplicationConfiguration✔️pro✔️✔️
SetRepositoryPolicy✔️pro✔️✔️✔️✔️✔️Show Tests
StartImageScan✔️pro
StartLifecyclePolicyPreview✔️pro
TagResource✔️pro✔️✔️✔️Show Tests
UntagResource✔️pro✔️✔️✔️Show Tests
UpdatePullThroughCacheRule
UploadLayerPart
ValidatePullThroughCacheRule

Terminology

  • Internal Test Suite: tested by LocalStack's internal integration test suite
  • External Test Suite: covered by an external integration test suite, that runs against LocalStack
  • Terraform Validated: operation tested with Terraform
  • AWS Validated: the integration test that includes this operation call was validated against AWS
  • Snapshot Tested: the operation is part of a snapshot parity test, which verifies the responses by LocalStack and AWS are the same

Testing Details

This section gives an overview about the internal integration test suite and the specific test cases that recorded the API call.

How to read the test details?

For each operation we put up a list of the related integration test cases.
Those operation calls have been recorded during the exeuction of the outlined test cases. Some calls might be internal, i.e., they are not explicitly called in the test, but are triggered implicitly by the LocalStack framework.

  • Parameters: The tests are ordered by the parameters used, which are highlighted in bold.
  • Test Details: LocalStack Community or LocalStack Pro indicates where the test originates. For each test you see:
    • test name
    • status code returned (which is the expected one for the test case)
    • information about validation:
      • AWS validated the test is validated against AWS, meaning it run successfully against real AWS as well
      • Snapshot Tested this is a snapshot parity test, meaning the responses are validated against AWS


BatchDeleteImage

Parameters: imageIds, registryId, repositoryName
  • LocalStack Pro
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
Parameters: imageIds, repositoryName
  • LocalStack Pro
    • test_batch_delete_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 200
    • test_batch_get_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest HTTP Status Code: 200
    • test_delete_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_list_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images HTTP Status Code: 200
    • test_put_image[application/vnd.docker.distribution.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.docker.distribution.manifest.v2+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.oci.image.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 200
    • test_two_different_repositories LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories HTTP Status Code: 200
    • test_ecr_eks_integration LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration HTTP Status Code: 200
    • test_ecr_eks_integration_multiple_nodes LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration_multiple_nodes HTTP Status Code: 200
    • test_container_image_lambda_chained_invocation LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_with_image_config LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[node] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[python] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python] HTTP Status Code: 200 AWS validated Snapshot Tested

BatchGetImage

Parameters: imageIds, repositoryName
  • LocalStack Pro
    • test_batch_delete_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 200
    • test_batch_get_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 400 (InvalidParameterException)

BatchGetRepositoryScanningConfiguration

Parameters: repositoryNames
  • LocalStack Pro
    • test_registry_scanning_configuration LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_registry_scanning_configuration HTTP Status Code: 200 AWS validated Snapshot Tested

CreateRepository

Parameters: encryptionConfiguration, imageScanningConfiguration, imageTagMutability, repositoryName, tags
  • LocalStack Pro
    • test_url_output LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output HTTP Status Code: 200
    • test_create_service_run_task LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task HTTP Status Code: 200
Parameters: repositoryName
  • LocalStack Pro
    • test_url_output_different_account_or_region[000000000000-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-us-east-1] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-us-east-1] HTTP Status Code: 200
    • test_auth_token_in_different_regions LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_auth_token_in_different_regions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_delete_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 200
    • test_batch_get_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest HTTP Status Code: 200
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
    • test_delete_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200
    • test_get_authorization_token LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token HTTP Status Code: 200
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200
    • test_list_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images HTTP Status Code: 200
    • test_put_image[application/vnd.docker.distribution.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.docker.distribution.manifest.v2+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.oci.image.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image_tag_mutability LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image_tag_mutability HTTP Status Code: 200
    • test_registry_scanning_configuration LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_registry_scanning_configuration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 200
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 200
    • test_two_different_repositories LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories HTTP Status Code: 200
    • test_ecr_custom_localstack_host_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_custom_localstack_host_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_default_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_default_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_localhost_domain_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_localhost_domain_endpoint HTTP Status Code: 200
    • test_ecr_eks_integration LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration HTTP Status Code: 200
    • test_ecr_eks_integration_multiple_nodes LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration_multiple_nodes HTTP Status Code: 200
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_chained_invocation LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_with_image_config LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[node] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[python] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr LocalStack Pro: tests/aws/test_network_configuration.py::test_ecr HTTP Status Code: 200

DeleteLifecyclePolicy

Parameters: repositoryName
  • LocalStack Pro
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200

DeleteRepository

Parameters: registryId, repositoryName
  • LocalStack Pro
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 200
Parameters: repositoryName
  • LocalStack Pro
    • test_url_output LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-us-east-1] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-us-east-1] HTTP Status Code: 200
    • test_auth_token_in_different_regions LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_auth_token_in_different_regions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_delete_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 200
    • test_batch_get_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest HTTP Status Code: 200
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
    • test_delete_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200
    • test_get_authorization_token LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token HTTP Status Code: 200
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200
    • test_list_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images HTTP Status Code: 200
    • test_put_image_tag_mutability LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image_tag_mutability HTTP Status Code: 200
    • test_registry_scanning_configuration LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_registry_scanning_configuration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 200
    • test_two_different_repositories LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories HTTP Status Code: 200
    • test_ecr_custom_localstack_host_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_custom_localstack_host_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_default_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_default_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_localhost_domain_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_localhost_domain_endpoint HTTP Status Code: 200
    • test_create_service_run_task LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task HTTP Status Code: 200
    • test_ecr_eks_integration LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration HTTP Status Code: 200
    • test_ecr_eks_integration_multiple_nodes LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration_multiple_nodes HTTP Status Code: 200
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_chained_invocation LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_with_image_config LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[node] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[python] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr LocalStack Pro: tests/aws/test_network_configuration.py::test_ecr HTTP Status Code: 200
    • test_put_image[application/vnd.docker.distribution.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json] HTTP Status Code: 400 (RepositoryNotEmptyException) AWS validated Snapshot Tested
    • test_put_image[application/vnd.docker.distribution.manifest.v2+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json] HTTP Status Code: 400 (RepositoryNotEmptyException) AWS validated Snapshot Tested
    • test_put_image[application/vnd.oci.image.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json] HTTP Status Code: 400 (RepositoryNotEmptyException) AWS validated Snapshot Tested
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 400 (RepositoryNotEmptyException)
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 400 (RepositoryNotFoundException)

DescribeImages

Parameters: imageIds, repositoryName
  • LocalStack Pro
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 400 (ImageNotFoundException)
Parameters: repositoryName
  • LocalStack Pro
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 200
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_describe_images_non_existent_repository_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images_non_existent_repository_registry HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 400 (AccessDeniedException) AWS validated Snapshot Tested

DescribeRepositories

Parameters: - (without any parameters)
  • LocalStack Pro
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
Parameters: registryId
  • LocalStack Pro
    • test_url_output LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-us-east-1] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-us-east-1] HTTP Status Code: 200
    • test_auth_token_in_different_regions LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_auth_token_in_different_regions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_delete_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 200
    • test_batch_get_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest HTTP Status Code: 200
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
    • test_delete_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200
    • test_get_authorization_token LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token HTTP Status Code: 200
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200
    • test_list_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images HTTP Status Code: 200
    • test_put_image_tag_mutability LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image_tag_mutability HTTP Status Code: 200
    • test_registry_scanning_configuration LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_registry_scanning_configuration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 200
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 200
    • test_two_different_repositories LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories HTTP Status Code: 200
    • test_ecr_custom_localstack_host_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_custom_localstack_host_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_default_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_default_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_localhost_domain_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_localhost_domain_endpoint HTTP Status Code: 200
    • test_create_service_run_task LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task HTTP Status Code: 200
    • test_ecr_eks_integration LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration HTTP Status Code: 200
    • test_ecr_eks_integration_multiple_nodes LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration_multiple_nodes HTTP Status Code: 200
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_chained_invocation LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_with_image_config LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[node] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[python] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr LocalStack Pro: tests/aws/test_network_configuration.py::test_ecr HTTP Status Code: 200
Parameters: registryId, repositoryNames
  • LocalStack Community
    • test_s3_bucket_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed HTTP Status Code: 501 (InternalFailure)
  • LocalStack Pro
    • test_url_output_different_account_or_region[000000000000-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-us-east-1] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-us-east-1] HTTP Status Code: 200
    • test_batch_delete_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 200
    • test_batch_get_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest HTTP Status Code: 200
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
    • test_delete_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200
    • test_get_authorization_token LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token HTTP Status Code: 200
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200
    • test_list_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images HTTP Status Code: 200
    • test_put_image[application/vnd.docker.distribution.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.docker.distribution.manifest.v2+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.oci.image.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image_tag_mutability LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image_tag_mutability HTTP Status Code: 200
    • test_registry_scanning_configuration LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_registry_scanning_configuration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 200
    • test_two_different_repositories LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories HTTP Status Code: 200
    • test_ecr_custom_localstack_host_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_custom_localstack_host_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_default_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_default_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_localhost_domain_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_localhost_domain_endpoint HTTP Status Code: 200
    • test_ecr_eks_integration LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration HTTP Status Code: 200
    • test_ecr_eks_integration_multiple_nodes LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration_multiple_nodes HTTP Status Code: 200
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_chained_invocation LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_with_image_config LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[node] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[python] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr LocalStack Pro: tests/aws/test_network_configuration.py::test_ecr HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_describe_images_non_existent_repository_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images_non_existent_repository_registry HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 400 (RepositoryNotFoundException)
Parameters: repositoryNames
  • LocalStack Pro
    • test_url_output LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-us-east-1] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-us-east-1] HTTP Status Code: 200
    • test_put_image_tag_mutability LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image_tag_mutability HTTP Status Code: 200
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 200
    • test_create_service_run_task LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task HTTP Status Code: 200
    • test_untransformed_url_when_no_repository_created LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_untransformed_url_when_no_repository_created HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 400 (RepositoryNotFoundException)

GetAuthorizationToken

Parameters: - (without any parameters)
  • LocalStack Pro
    • test_auth_token_in_different_regions LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_auth_token_in_different_regions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_authorization_token LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token HTTP Status Code: 200
    • test_lambda_from_image[node] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node] HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: registryIds
  • LocalStack Pro
    • test_put_image[application/vnd.docker.distribution.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.docker.distribution.manifest.v2+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.oci.image.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested

GetLifecyclePolicy

Parameters: repositoryName
  • LocalStack Pro
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200

GetRegistryScanningConfiguration

Parameters: - (without any parameters)
  • LocalStack Pro
    • test_registry_scanning_configuration LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_registry_scanning_configuration HTTP Status Code: 200 AWS validated Snapshot Tested

GetRepositoryPolicy

Parameters: repositoryName
  • LocalStack Pro
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 400 (RepositoryPolicyNotFoundException) AWS validated Snapshot Tested

ListImages

Parameters: repositoryName
  • LocalStack Pro
    • test_url_output_different_account_or_region[000000000000-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[000000000000-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[000000000000-us-east-1] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-eu-central-2] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-eu-central-2] HTTP Status Code: 200
    • test_url_output_different_account_or_region[111111111111-us-east-1] LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output_different_account_or_region[111111111111-us-east-1] HTTP Status Code: 200
    • test_batch_delete_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 200
    • test_batch_get_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest HTTP Status Code: 200
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
    • test_delete_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200
    • test_get_authorization_token LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token HTTP Status Code: 200
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200
    • test_list_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images HTTP Status Code: 200
    • test_put_image[application/vnd.docker.distribution.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.docker.distribution.manifest.v2+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.oci.image.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image_tag_mutability LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image_tag_mutability HTTP Status Code: 200
    • test_registry_scanning_configuration LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_registry_scanning_configuration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 200
    • test_two_different_repositories LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories HTTP Status Code: 200
    • test_ecr_custom_localstack_host_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_custom_localstack_host_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_default_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_default_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr_localhost_domain_endpoint LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_localhost_domain_endpoint HTTP Status Code: 200
    • test_ecr_eks_integration LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration HTTP Status Code: 200
    • test_ecr_eks_integration_multiple_nodes LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration_multiple_nodes HTTP Status Code: 200
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_chained_invocation LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_container_image_lambda_with_image_config LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[node] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_from_image[python] LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ecr LocalStack Pro: tests/aws/test_network_configuration.py::test_ecr HTTP Status Code: 200
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 400 (RepositoryNotFoundException)
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 400 (RepositoryNotFoundException)

ListTagsForResource

Parameters: resourceArn
  • LocalStack Pro
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested

PutImage

Parameters: imageManifest, imageTag, repositoryName
  • LocalStack Pro
    • test_put_image[application/vnd.docker.distribution.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.docker.distribution.manifest.v2+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.oci.image.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested

PutImageTagMutability

Parameters: imageTagMutability, repositoryName
  • LocalStack Pro
    • test_put_image_tag_mutability LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image_tag_mutability HTTP Status Code: 200

PutLifecyclePolicy

Parameters: lifecyclePolicyText, repositoryName
  • LocalStack Pro
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200

PutRegistryScanningConfiguration

Parameters: rules, scanType
  • LocalStack Pro
    • test_registry_scanning_configuration LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_registry_scanning_configuration HTTP Status Code: 200 AWS validated Snapshot Tested

SetRepositoryPolicy

Parameters: policyText, repositoryName
  • LocalStack Pro
    • test_ecr_repository_policies LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_ecr_repository_policies HTTP Status Code: 200 AWS validated Snapshot Tested

TagResource

Parameters: resourceArn, tags
  • LocalStack Pro
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200

UntagResource

Parameters: resourceArn, tagKeys
  • LocalStack Pro
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200


Last modified March 20, 2023: improve Coverage Docs (#505) (46f2fb0c0)