Home > Enterprise >  Is codepipeline with jenkins a good solution? [closed]
Is codepipeline with jenkins a good solution? [closed]

Time:09-17

Pipelines costed 1$ per pipeline if we use any pipeline after a month when it was created, and we have 400-500 api endpoints and we have to create pipeline for every one of them,Is codepipeline with jenkins a good solution? As shown here

CodePudding user response:

are you already using Jenkins? Based on the link you shared, keep in mind that you are paying for the EC2 instance that is running the Jenkins server

if you are starting fresh, you could use CodeBuild as a build server, it will offer a better cost long-term, because you pay only when CodeBuild is running

related to the pricing of the CodePipeline,

AWS CodePipeline costs $1.00 per active pipeline per month:

An active pipeline is a pipeline that has existed for more than 30 days and has at least one code change that runs through it during the month. There is no charge for pipelines that have no new code changes running through them during the month. An active pipeline is not prorated for partial months.

If you are not using your pipeline, you are not paying

  • Related