Use this tag if a question is about aws-codepipeline
Questions tagged [aws-codepipeline]
14 questions
7
votes
2 answers
Defining and using bash functions in AWS CodeBuild
I thought I could slightly improve readability of repetitive sed calls when inserting secrets into a file with AWS CodeBuild. I defined a bash function:
replaceConfig() { sed -i 's|{'$1'}|'${!1}'|' config.json; }
This can be called like…
Kyle
- 171
- 1
- 3
2
votes
1 answer
AWS CodePipeline frozen on Source
I have created a very simple pipeline. I have a git repo in CodeCommit, and the pipeline, when triggered, simply copies the files to an existing S3 folder which is set up to serve a static website. Once I finished creating the pipeline, it started…
smoothgrips
- 121
- 1
2
votes
1 answer
Artifacts mentioned in secondary-artifacts section not getting uploaded to s3 bucket
I have created a codePipeline project through which my application get build using maven and it's artifacts are uploaded to s3. I'm trying to upload multiple artifacts as a single zip file to s3 bucket through codebuild. Below is my sample…
Rakesh.N
- 125
- 7
2
votes
1 answer
AWS CodePipeline Handling Release Candidates
We have a system set up that when we merge a branch into master, it runs in AWS CodePipeline where it recognizes the merge, builds the code to our QA environment, then waits for approval to be deployed to production.
The issue is that once we make…
Travis
- 121
- 2
1
vote
1 answer
Setting up CI/CD for an AWS CDK app using AWS CodeBuild/Deploy/Pipeline
I'm trying to setup a CI/CD pipeline for a dotnet app which uses AWS Lambda and AWS CDK for infrastructure. The source is on github and we have a Jenkins pipeline which runs the tests and publishes the artifacts. I want to use the artifact and…
theabrar
- 11
- 1
1
vote
2 answers
Unit Test AWS Glue job in CodePipeline
I have an AWS Glue job written in Python that I would like to perform pyunit tests on. However, from reading and experimenting on my own, there seem to be quite a few dependencies on the Glue service, making this task very impractical if not…
Preston Martin
- 3,288
- 4
- 18
- 39
1
vote
1 answer
Advantages of using Code-pipeline and Codebuild for CI/CD over Bitbucket pipeline?
What are the advantages of using AWS Codepipeline/code build for our pipeline over the bitbucket pipeline. ?
Some of the factors that I can think of:
Pricing?
Pipeline for a serverless application
integration with AWS
services
Speed of execution
systemdebt
- 129
- 6
1
vote
1 answer
Continuous deployment
I have a nodejs application using expressjs. This server is handing a website built on vuejs, an application using angular and another angular app. Everything is working and I deployed to AWS eb using a pipeline. The problem is when a website change…
nab
- 111
- 2
0
votes
1 answer
Docker container is running but when using curl not accessible
I tried to host docker container in my EC2, just for UAT (for production, we will fargate). My concern is I want to host my container in EC2 and run all test cases, after successfully will be deployed to fargate.
Here is appspec.yml
version: 0.0
os:…
Pyae Phyoe Shein
- 127
- 1
- 5
0
votes
2 answers
Why many companies prefer Jenkins than Aws CodePipeline?
I have searched few job sites. Many companies are searching engineers who can handle Jenkins as CI platform.
I think the Aws CodePipeline is easier than Jenkins.
Anyone can advise me, please.
Thank you in advance.
Chachatonel Hashimotto
- 215
- 2
- 11
0
votes
1 answer
Unable to install nodejs 20 in AWS codebuild image
I need to install nodejs 20 as part of a build process running on codebuild.
Steps to reproduce
- sudo apt purge nodejs -y
- sudo apt-get install -y ca-certificates curl GnuPG
- export NODE_MAJOR=20
- sudo mkdir -p /etc/apt/keyrings
- curl -fsSL…
Joao Vitorino
- 243
- 1
- 3
- 10
0
votes
2 answers
AWS ECS Green/Blue with CodePipeline: The ELB could not be updated due to the following error: Primary taskset target group must be behind listener
I've been trying for hours to get a basic CodePipeline up and running with ECS Green/Blue. We're creating a prototype, so everything is in a single repo for now, and the Dockerfile, taskdef.json, appspec.yaml are all in a subfolder. I'm getting the…
Patrick
- 129
- 1
- 5
0
votes
1 answer
Pull request and merge actions in CI/CD
The CI/CD pipeline supports pipelines per branch but no pipeline for feature branches is triggered automatically. There are pipelines deployed for the following branches: development, master. The respective pipeline is triggered onCommit event…
systemdebt
- 129
- 6
-1
votes
1 answer
Can I define a CodePipeline with Terraform that deploys my Terraform resources?
I'm trying to figure out the best way to automate the deployment of infrastructure resources defined in Terraform. Ideally, I'd like to deploy all my code — including resource definitions — in a CI/CD manner.
So, if I define an AWS CodePipeline that…
Jed
- 99
- 1