Questions tagged [continuous-delivery]

Continuously building, testing and deploying (to non-production environments) applications to prove which instances are fit to be deployed to production.

Continuous delivery is the process of automating as much of the build pipeline as possible to produce deployable applications as quickly as is reasonable. It is the last step before continuous deployment, which also puts the deployable application into production automatically.

This tag is suitable for questions about

  • creating and managing the pipeline used to coordinate the build, test and deploy process
  • environment configuration management
  • wiring build tools to assist with the automated configuration of deployments
  • configuration of continuous integration tools such as Jenkins, Thoughtworks' Go and Atlassian's Bamboo
  • the configuration and deployment of temporary virtual machines and environments specifically for the testing of deployment processes
  • configuration of tools for managing those temporary environments, such as Vagrant
584 questions
0
votes
1 answer

How to use bmuschko/gradle-docker-plugin to automate copying file to a running docker in IBM Containers with Gradle

I have added bmuschko/gradle-docker-plugin into a Gradle build.gradle file to automate copying a war file into a running container. The file copy command of this plugin copying into a docker instance works perfect to a standard remote docker machine…
icordoba
  • 1,834
  • 2
  • 33
  • 60
0
votes
1 answer

How to create a new branch from an existing branch for Bluemix project

I am trying to create a new branch from an existing branch named "develop". For this I am using the command, git checkout -b release master It shows that the branch is created ... But in the jazz hub UI, I don't see it. Are there any more commands…
H Varma
  • 570
  • 4
  • 12
  • 29
0
votes
1 answer

How to disable email notifications in bluemix devops services track & plan

Working with the 'Track & Plan' feature of the IBM Bluemix DevOps Services generates a lot of email notifications to my co-workers and me. For example, notifications are sent out for each work item creation, modification or assignment. As the number…
0
votes
0 answers

Software Distribution Methods to multiple production instances

We write software that lives in a git repository. We've sold this software to several companies. Each company has a virtual machine running one or more instances of our stuff inside their internal networks. We currently use git bundles to push…
slumtrimpet
  • 3,159
  • 2
  • 31
  • 44
0
votes
1 answer

Continuous Delivery / Deployment and Process Controls

From a "process controls" POV, in a continuous delivery/deployment context, how important is it to mandate that source control commits are associated with an Agile PM (or ticketing tool) "work-item?" Here "work-item" means any of: user story, task,…
Brent Arias
  • 29,277
  • 40
  • 133
  • 234
0
votes
1 answer

Approaches to deployment in Continues Integration - Jenkins

I have a doubt regarding the best way to make the deployment of the artifacts of an application, I know i can create separate jobs to do this, but the Deployment Job would have to build the application again, or have a way to enjoy the artifact…
0
votes
1 answer

Reducing the shipping time in continuous delivery, especially in hotfix

I'm implementing continuous delivery with some technologies and services, such as docker, shippable, AWS Elastic beanstalk, etc. However, it takes a few(5~7) minutes to the application to be automatically deployed to the production server, from…
Kivol
  • 167
  • 1
  • 7
0
votes
1 answer

script if version in package.json has changed

I have a npm module project that also provides a docker image. I want to trigger the build/test/push of a docker image when package.json version changes. I'm after a bash script that will identify whether the version in my package.json has…
Tom
  • 981
  • 11
  • 24
0
votes
0 answers

What are benefits of having jenkins master in a docker container?

I saw couple of tutorials on continuous deployment (on docker.com, on codecentric.de, on devopscube.com). Overall I saw two approaches: Set two types of jenkins server (master and slave). Master is in a docker container and slave on the host…
0
votes
1 answer

openshift cannot list routes in project

I'm finding my way in OpenShift v3.2 and have been following a blog post that instructs on how to create a continuous-delivery project using jenkins that will build and deploy a demo project. The blog post can be found here:…
mmelsen
  • 636
  • 1
  • 8
  • 24
0
votes
0 answers

Best Continuous Delivery Open Source tool with good community base

We need a Continuous Delivery tool which is free to use. Hence, which is the best option out there? Also, the community base for this tool should be widespread to support.
0
votes
1 answer

Continuous Delivery with Maven: Why not just use the build number a the artifact's version?

I'm in the process of implementing CD with Maven and Jenkins and was just wondering: Instead of Maven's major.minor.version scheme for the version, why not just use Jenkins build number? That way the whole versioning could be fully automated, right?
helpermethod
  • 59,493
  • 71
  • 188
  • 276
0
votes
3 answers

Container delivery on amazon ecs

I’m using Amazon ECS to auto deploy my containers on uat/production. What is the best way to do that? I have a REST api with a several front-end clients Should I package my api container with nginx in the same container? And do the same thing with…
0
votes
1 answer

How to create executable jar for testNG with configurable parameter and get the output as pass fail for each test case

How to create executable jar for testNG with configurable parameter and get the output as pass fail for each test case I have a TestNG maven project and currently all the parameter are passed from .properties file, i want to move the project to…
0
votes
1 answer

Azure Deployment Source - Triggers?

How can I tell the Deployment Source to only run when there have been changes to specific project(s)/file(s)? In other words, something like Triggers. I know Triggers are different, because that would be the Repo checking the file differences and…
Suamere
  • 5,691
  • 2
  • 44
  • 58