Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,555,286
Community Members
 
Community Events
184
Community Groups

Pipelines - aws: command not found

Edited

I'm trying to install AWS CLI using pipelines with the following commands :


# Installe and init AWS CLI
- apt-get update && apt-get install -y python-dev
- curl -O https://bootstrap.pypa.io/get-pip.py
- python get-pip.py
- pip install --upgrade --user awscli

Then when I run : 

aws --version

Throws this error  

bash: aws: command not found

 

Any help?

2 answers

1 accepted

2 votes
Answer accepted
edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Feb 28, 2019

Hi @Augusto Cordero ,

Install awscli from apt

- apt-get update && apt-get install -y awscli
- aws --version

Thanks, it works for me.

It seems that the version installed with this command is not the latest version and cannot handle the aws commands : ecr and ecs, which are what I need.

edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Feb 28, 2019

I would then recommend using Python 3

- apt-get update && apt-get install -y python3-pip 
- pip3 install -U awscli
- aws --version

Ok, with this version the commands are working properly. Thanks.

Edwin - Do you have another base image for builds you can recommend that already contains the aws CLI?

edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 16, 2019

Hi @AJ Steers ,

If all your doing is running awscli commands in the image, then i would recommend a lightweight alpine image .. governmentpaas/awscli - which is based on governmentpaas/curl-ssl

More options - awscli docker hub

Like AJ Steers likes this

Thanks very much! I'm also looking for python3.5+ so I might just have to roll my own image to get both. I did a quick search on dockerhub but nothing popped up.

I did end up building my own image `aaronsteers/builder:python3.7-aws`. I've setup automated build and made the image public on dockerhub.com:

Like ktomk likes this

Atlassian also has an alpine image for the awscli: https://hub.docker.com/r/atlassian/pipelines-awscli

Like edwin likes this

Thank you... after 16hrs i found this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events