Questions tagged [continuous-deployment]

A software engineering approach in which teams keep producing software in short cycles and ensure that the software can be released to production at any time.

Continuous Deployment (CD) is a continuous automation process where deployment of software to production systems is fully automated. This ensures that fixes and new features can be brought to production quickly.

This usually includes having a good set of automated tests to automatically verify the fitness of the software for production use.

See the article Continuous Delivery on Wikipedia for more information.

2667 questions
1
vote
1 answer

IBM Integration bus with bamboo (for CI/CD)

Our ESB team is interested in improving the CI/CD abillities of our project. We would like to integrate somehow between the IIB 10 to Bamboo (jenkins is not well supported in our company). *We use git as source control and GreenHat/ SoapUI for…
1
vote
1 answer

How to upload files to Azure Blob storage from github using continuous integration

I am storing my scripts in Azure Blob storage. Right now, I am manually uploading each file to Blob storage when I do modify the files in git-hub branch. I don't want to upload scripts manually when files get modified. Is there a way to push scrips…
Galet
  • 5,853
  • 21
  • 82
  • 148
1
vote
3 answers

Spinnaker - Kubernetes - Can't find docker containers

I have installed spinnaker and kubernetes as suggested in the manual https://www.spinnaker.io/guides/tutorials/codelabs/kubernetes-source-to-prod/ Thing is, I cannot seem to be able to access my docker containers on Docker Hub via Spinnaker in step…
1
vote
2 answers

XML Variable Substitution on VSTS Release Management Definition

I created a release definition on Visual Studio Team Services for my Windows console application. This app runs on a Virtual Machine so I basically perform the deployment using a Windows Machine File Copy task. Now I need to create two environments…
1
vote
0 answers

Repo name size limitation when trying to Create Docker Automated Build

While trying to link a public github repo to an automated build on the Docker hub, I'm experiencing the behavior whereby clicking create button on the page causing no visible response at all. I looked into it and found the following javascript…
1
vote
1 answer

How to UPDATE DATABASE in Code First approach automatically after check-in and Publish code in Continuous deployment

​In our Web API application, Continuous deployment need a following scenario. User will check in code in VS, Code will get automatically build, Code will be Published, Code will be deployed. But If we are using Entity Framework Code First approach,…
1
vote
1 answer

How to send all files to the repository but exclude some when deploy?

I was thinking about sending all the files in my dev environment, including a copy of the database I use locally and the files used in my environment, so the other developer could use it instead of copy the production version because it's too big.…
f4ssb3nd3r
  • 43
  • 5
1
vote
1 answer

How to manager multiple components in CD

We have a use-case where we have multiple components which get deployed. Most of the components are independent of each other and can have there own CD pipelines. But some of the component are dependent and is there any best practice to handle these…
Amol
  • 479
  • 5
  • 18
1
vote
1 answer

Appveyor builds for all branches instead of specified ones

We have currently three separated appveyor projects, one for each branch in our repository. Our problem is follwing: Appveyor ignores my filter on github branches. Everytime we make a commit to master, stage or dev it builds on all three projects…
Rovdjuret
  • 1,458
  • 3
  • 19
  • 40
1
vote
1 answer

Centralized configuration variables for jenkinspipe jobs

I am a newbie to jenkins pipeline. I am looking to develop a shared library which can load configuration variables from database or external resource via Restful interface, then all variables will be ingested into each jenkins pipeline jobs. Any…
1
vote
0 answers

Automated deployment of Node web application to cloud machine

I'm brand new to CI/CD and need some guidance on how to deploy a small web application to a cloud machine. My web application is built using Webpack 2. The resulting files are served through a Node webserver, and requires two additional Node…
langkilde
  • 1,473
  • 1
  • 20
  • 37
1
vote
1 answer

How to use custom DNS settings in Drone Docker plugin

I am using Drone behind a corporate proxy. When I'm building Docker containers there, Docker inserts the correct search server as well as DNS addresses into the container's /etc/resolv.conf. However, when using the Docker plugin, only the search…
1
vote
0 answers

Laravel: Install git, composer, nodejs and gulp on production server

Is there a right or proper way of deploying a laravel application? This is because I am not sure if it is right to install git, composer, nodejs and gulp on production server. I have these installed on my development server so I just do a git…
basagabi
  • 4,900
  • 6
  • 38
  • 84
1
vote
1 answer

CircleCi Artifacts expiry

What is the expiry of CircleCi artifacts? For example, if a build has created with some artifacts (android apk file for example) then till when can I download those artifacts? I have googled it a lot but didn't found any answer so far.
1
vote
0 answers

How to set multiple initial jobs on Jenkins Pipeline View

I am using Jenkins to manage build workflow. I have three projects ui, backend and release. The release project needs to be triggered either by ui and backend. In other words, ui and backend are upstream projects while release is the downstream…