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

One-time invocation tasks in Puppet

I have coded two different modules for Puppet one which ensures Tomcat7 is installed and running and another one which deploys a web application into Tomcat webapps folder. However, if I run puppet as a daemon with these two modules, the application…
felix
  • 511
  • 2
  • 3
0
votes
1 answer

Tool for automatically deploying accepted pull requests

I created a website (a Ruby on Rails application) that I would like to make open-source so that the community can make improvements. The source code is already publicly available on GitHub. However, I'd like to set up my server so that when I accept…
Andrew
  • 227,796
  • 193
  • 515
  • 708
0
votes
1 answer

Using supertest to test separate nodes run by naught

I'm using a naught (https://github.com/andrewrk/naught) to run my node.js app on multiple cores and also have naught giving me zero downtime deploys with only one machine. I'd like to use supertest (https://github.com/visionmedia/supertest) for…
0
votes
2 answers

Continuous integration and "X as a code"

What are pros and cons of keeping all of continuous integration and delivery configuration in VCS? Just like "infrastructure as a code", this should allow to work with all the configuration matrices, pipelines and stuff just like code itself. Order…
0
votes
1 answer

Continuous delivery of infrastructure projects

I'm using Jenkins to achieve Continuous Delivery on some infrastructure projects. ATM Master-Slave Jenkins model is used where the jobs are always built by some some slave and not by the master, my intentions are to build and run test-kitchen and…
Carlos Castellanos
  • 2,358
  • 4
  • 25
  • 43
0
votes
1 answer

Can I automatically update a live site after each commit using TFVC and Azure?

For each commit I want to have a live version with the committed code using TFVC and Windows Azure. If a developer commits something I want to be able to test it on dev.mysite.com. How can I setup this using azure and TFVC?
hopper
  • 4,230
  • 8
  • 36
  • 49
0
votes
1 answer

Parallelizing tests with Jenkins

I am using Jenkins for integration testing. Just to give the context. At the moment I have a separate build server which produces the build daily and Jenkins is not used as the build server. The build server executes the unit testing in my…
0
votes
2 answers

Partial packages in Continuous Delivery

Currently we are running a C# (built on Sharepoint) project and have implemented a series of automated process to help delivery, here are the details. Continuous Integration. Typical CI system for frequent compilation and deployment in DEV…
0
votes
3 answers

Single package in continuous delivery pipeline when building in parallel

My company is using Jenkins for continuous integration and I'm trying to move towards CD. I'm using git hub as a code repository. Right now we are merging feature branches into a uat environment and when a particular feature has been accepted the…
user663470
  • 149
  • 7
0
votes
1 answer

automated deployment on production with puppet

I would like to know how automated deployment to production works with puppet. Do I need a puppet-slave on my production server? If thats the case, is that insecure and what rights do puppet get with that? A use-case could be to get a package from…
user1338413
  • 2,471
  • 8
  • 29
  • 36
0
votes
1 answer

Can I change the configuration of a war package?

I have a project that i test, compile and build the war-package for it at my developer-environment. Now I need this package at the test-environment, for which the package needs/has an other configuration. The same later fot the…
user1338413
  • 2,471
  • 8
  • 29
  • 36
0
votes
1 answer

Session survival with continuous delivery

I'm working with an application in jsf and continuously Delivery to Heroku. I'm new to both JSF and Heroku. I don't know if it's possible but my wish is to be able to do minor updates on the application, deploy to Heroku but still let the sessions…
-1
votes
1 answer

Jenkins pipeline Boolean parameter default value cannot set dynamically thruogh jenkins shared lib

this is Jenkinsfile @Library('shared-library@variablestatus') def IMG_NAME = 'shortener' def REPO_URL = '' (BRANCH, CLUSTER, NAMESPACE, ENVPROFILE, REGION, ECR_REGISTRY, BUILDFLAG, DEPLOYFLAG) = getEnvParams("system") properties([ …
-1
votes
1 answer

Should i use Azure release pipeline for deployment or directly deploy from build pipelines by using a task?

Azure DevOps has Pipelines (build) blade and Releases blade, deployment can be done by both either by creating a specific task in the build pipeline or by creating a new release in Releases, which one should i use? I used both solutions and i belive…
-1
votes
1 answer

Variable for dealing with multiple artifacts

In my release pipeline having Two artifacts. Build Tests While selecting files under artifact I am using "Release.PrimaryArtifactSourceAlias" and accessing the Build artifact files. but is there any variable we can use to access files under Test…
1 2 3
38
39