Hi folks,
I am trying to deploy an app using bb pipelines and aws codedeploy but for some reason I get an error, not sure if I doing it right. I have attached the bitbucket-pipelines.yml
pipelines:
default:
- step:
name: Build and Test
image: ubuntu:latest
caches:
- maven
script: # Modify the commands below to build your repository.
- apt-get update && apt install python-pip default-jre maven -y
- pip install --upgrade python
- pip install --upgrade awscli
- eval $(aws ecr get-login --region ${AWS_DEFAULT_REGION} --no-include-email)
- mvn clean install dockerfile:build dockerfile:tag dockerfile:push
services:
- docker
- step:
name: Deploy
script:
- pipe: atlassian/aws-code-deploy:0.2.2
variables:
AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
COMMAND: 'deploy'
APPLICATION_NAME: $APPLICATION_NAME
DEPLOYMENT_GROUP: $DEPLOYMENT_GROUP
WAIT: 'true'
options:
docker: true
and I get the below error:
An error occurred (RevisionDoesNotExistException) when calling the GetApplicationRevision operation: No application revision found for revision.
✖ Failed to fetch revision.
I was able to solve this. Your script is missing the upload step to S3, so there is no package to be deployed.
Add this step between your build en deploy step:
- step:
name: Upload to S3
services:
- docker
script:
# Test upload
- pipe: atlassian/aws-code-deploy:0.2.3
variables:
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}
AWS_DEFAULT_REGION: ${AWS_DEFAULT_REGION}
COMMAND: 'upload'
APPLICATION_NAME: ${APPLICATION_NAME}
ZIP_FILE: 'myapp.zip'
S3_BUCKET: $S3_BUCKET
Note the 'command' parameter.
Same problem here, I'm new with codeDeploy and the pipelines, so I followed those steps: https://levelup.gitconnected.com/set-up-a-continuous-delivery-pipeline-from-bitbucket-to-aws-ec2-using-aws-code-deploy-a9777a3cbcad
But getting the same error in my pipeline now..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how did you solve the revision issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have other issues, but I think I got past this one. At least, I don't get this error any more.
From the deploy target instance, I ran the following before running the pipeline:
aws deploy register-application-revision \
--application-name [code deploy application name] \
--description "Description" \
--s3-location bucket=[bucket name],key=[VERSION_LABEL set in bitbucket-pipelines.yml],bundleType=[tar,gzip or zip]
Hope this helps...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.