So I need to run a cross flatform testing in bitbuket pipeline, I find the documentation here, however I'm not sure how to use the image from aws ? I have tried a few ways , all failed. what's the format to use ecr image here?
Hello Xiaoxue Chen,
If I understand correctly, you want to use a Docker image that is hosted by AWS ECR?
In order to do so, you can:
1) First, create two secure variables in Pipelines for the AWS access key and AWS secret key. You can define those either as repository variables (from the 'Repository Settings' > 'Repository variables') or as workspace variables (from workspace 'Settings' > 'Workspace variables') if you want them available for multiple repos in that workspace.
You can find more info on creating variables in pipelines here:
2) Assuming that the name of these variables are AWS_ACCESS_KEY and AWS_SECRET_KEY respectively, you define the image as follows:
image:
name: <aws_account_id>.dkr.ecr.<region>.amazonaws.com/openjdk:8
aws:
access-key: $AWS_ACCESS_KEY
secret-key: $AWS_SECRET_KEY
Replace the image name also with the appropriate values for your image.
This info is included in the following documentation, section "Private images hosted by AWS ECR (EC2 Container Registry)"
Is this something that works for you?
In case you still face issues, could you copy-paste here the definition you use in your yml file and the error you get, so we can better help? (Please remember to sanitize any private/sensitive info you post here)
Kind regards,
Theodora
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.