Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Cross-platform testing in Bitbucket Pipelines with aws image

Xiaoxue Chen
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 11, 2020

 

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?

https://confluence.atlassian.com/bitbucket/cross-platform-testing-in-bitbucket-pipelines-939918936.html

1 answer

1 accepted

0 votes
Answer accepted
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 24, 2020

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

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events