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

PUT update a TeamCity Configuration Parameter working from PostMan but not from Powershell Script

$url = "https://teamcity.myserver.io/guestAuth/app/rest/buildTypes/id:SandboxPlayGround_WindowsForms1_Build/parameters/Version" $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("Content-Type",…
1
vote
1 answer

Saving final build version in TeamCity

I am using file content replacer Build Feature to change the AssemblyVersion and AssemblyFileVersion but I do not see any option to save the final version in TeamCity so that I can use it somewhere else down the build step. Any pointers on how to…
1
vote
1 answer

Script creation of Builds and Releases in TFS 2015

I recently finished figuring out a Build and Release process for our environment using TFS 2015 vNext build and release tasks. I'll now need to duplicate that several dozen projects. I've been looking around and I see no way to automate or script…
1
vote
1 answer

Versioning the infrastructure Continuous Deployment

We are trying to establish continuous deployment. We want to do network swaps when deploying new resources. Sometimes the Azure infrastructure is not responsive provisioning the resources. As we can have a left over conflicting resources when a…
1
vote
2 answers

CI/CD with Docker - what is the final deployment step?

I am developing a small website (Ruby/Sinatra) to be used internally where I work. (Simply, it crunches some source data and generates reports.) I'm want to deploy it using Docker and have a set up that works on my dev environment, but I'm trying to…
Steve Folly
  • 8,327
  • 9
  • 52
  • 63
1
vote
1 answer

Docker in production

How to create work process for docker in production. Now it work: Developer commit changes to VCS CI build docker container with app Push to registry with latest tag docker-compose.yaml placed on server Pull new images and rerun it But if we are…
1
vote
1 answer

How to deploy Webpack build to AWS from Bitbucket?

I have a React application that I am bundling using Webpack. The app relies on a MongoDB database and a Node/Express server to field the backend of the app (API requests, etc.). I want to set up continuous integration/deployment (C.I/D.), but am not…
1
vote
0 answers

Connect to Docker Swarm for Continuous deploy

Any suggestions on how best to connect to a swarm for continuous deploy (within CI)? I'm using docker cloud, and CircleCI 2. Tried dockercloud/client e.g. docker run --rm -ti -v /var/run/docker.sock:/var/run/docker.sock -e DOCKER_HOST…
1
vote
2 answers

How can I make octopus deployment step execute as administrator in order to call Update-SPSolution

I have setup an Octopus deployment script to update SharePoint solutions using Update-SPSolution and WSP packages. When I test the script from Powershell ISE (run as Administrator), it works. When I test the script from Powershell ISE (normal…
1
vote
0 answers

Codeship: Deploying to EC2 Container Service from Docker Image

I have a project which used Codeship Pro and i have successfully push to Docker Hub, and after that i want to push my project to AWS EC2 Container Service with it. I followed this…
1
vote
1 answer

Docker CD workflow - making docker hosts pull new images and deploy them

I'm setting up a CI/CD workflow for my organization but I'm missing the final piece of the puzzle. Surely this is a solved problem, or do I have to write my own? The full picture. I'm running a few EC2 instances on AWS, each running docker in its…
1
vote
4 answers

How to use kubernetes helm from a CI/CD pipeline hosted outside the k8s cluster

I am using kubernetes helm to deploy apps to my cluster. Everything works fine from my laptop when helm uses the cluster's kube-config file to deploy to the cluster. I want to use helm from my CI/CD server (which is separate from my cluster) to…
1
vote
2 answers

Storing Configuration File

I have a concern about putting configuration that consist of db password, server name, and other services settings of my app or service. Right now, I put the config file on the same place with my codes (Git). This is risky because if someone get it,…
1
vote
1 answer

DIY CDN: Deploying from Bitbucket to Azure Storoage

I'm trying to set up continuous deployment from a Bitbucket repo to an Azure CDN. The usage scenario is that front-end developers will commit static assets (js, images, css stylesheets etc.) to their Bitbucket repo and trigger an automatic release…
1
vote
1 answer

Jenkins Weblogic Server Deployment weblogic.management.home.localhome

Scenario: I try to deploy web services to weblogic server by Jenkins + weblogic deployer. I successfully get war files after build. While deploying war files I get below error in console. Additional descriptions: This is enterprise environment.…