Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

alternatives to jenkins in AWS

I am looking for some continuous integration solutions in AWS which can replace jenkins . Since my software is completely in AWS , i am looking for some thing with in AWS itself. I have heard of AWS Code deploy etc. Please throw some lights.

like image 387
Janier Avatar asked Apr 20 '17 22:04

Janier


People also ask

What is the best alternative to Jenkins for developers?

The Best Alternatives to Jenkins for Developers. 1 1. GitLab. GitLab CI/CD tool is a part of GitLab and a powerful alternative to Jenkins. It is an open-source web interface that can be used to apply ... 2 2. Atlassian Bamboo. 3 3. CircleCI. 4 4. TeamCity. 5 5. Travis CI. More items

Does Jenkins work with AWS codedeploy?

Delete your EC2 instance Jenkins is an open-source automation server that integrates with a number of AWS Services, such as AWS CodeCommit, AWS CodeDeploy, Amazon EC2 Spot, and Amazon EC2 Fleet. You can use Amazon Elastic Compute Cloud (Amazon EC2) to deploy a Jenkins application on AWS in a matter of minutes.

Is there a Jenkins alternative for GitLab?

GitLab GitLab CI/CD tool is a part of GitLab and a powerful alternative to Jenkins. It is an open-source web interface that can be used to apply all the continuous methods like integration, delivery, and deployment to your project without any third-party application.

Is CodePipeline better than Jenkins?

AWS CodePipeline is very clean, and integrates exceptionally well with projects in the Amazon ecosystem. With Jenkins, however, security is controlled on the server itself. With CodePipeline, it falls nicely under the same IAM controls as other AWS services.


2 Answers

AWS recently announced AWS CodeStar to develop, build, and deploy applications with CI/CD, utilizing AWS Code Pipeline, Code Build & Code Deploy. It also comes with predefined templates that provides appropriate selection of tooling based on Technology requirements.

like image 115
Ashan Avatar answered Oct 25 '22 08:10

Ashan


AWS CodeDeploy isn't a CI tool; it's a CD tool. They have something called CodePipeline, but that is simply a service that allows you to string together a bunch of different tools (some AWS, some not, including Jenkins for CI) to accomplish what you can with a Jenkins Pipeline.

like image 37
Jacob Avatar answered Oct 25 '22 07:10

Jacob