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
2 answers

Bluemix dev-ops services Web API?

I thought I'd read that there was an entire web services API for automating the latest Bluemix DevOps tooling? I don't see anything obvious in the…
Eric Swanson
  • 820
  • 1
  • 9
  • 19
0
votes
1 answer

Make feature-toggle long live feature with short branching live strategy

Hi search how to use feature-toggle long live feature with an short branching living strategy. It is advice to use short living branch (with PR and merge daily on master), but how to make this when your feature is long live. how to split your…
0
votes
2 answers

Deploy Web application to a different Azure account in Visual Studio Team Service

Is it possible to use a second azure account to set where my application will be deployed? For example, using my account to manage the project, but use my client's azure subscription to deploys the web application. In the video of Service…
0
votes
0 answers

In a micro-services eco-system, when should services be deployed in bulk and when incrementally

I am used to, and instinctively want to, deploy microservices individually. To understand the dependencies/contracts between them and roll-out updates in such a way as I can monitor the success of individual changes, one at a time. However, I see a…
Andy Hume
  • 40,474
  • 10
  • 47
  • 58
0
votes
1 answer

How to synchronize deployments (especially of database object changes) on multiple environments

I have this challenge. I am the DevOps engineer and a software engineer in a team where months back, the developers moved from having a central Oracle DB to having the DB on a CentOS VM on their individual laptops. The move from a central DB was to…
0
votes
1 answer

How to change the Git account used in IBM Bluemix?

I am new to Bluemix. I use Git to store the code developed in my Bluemix account. Until now I used my personal account(user/pwd). Now i want to use a different repository which has a different username and password combination. How can I achieve…
Ketu
  • 1,608
  • 2
  • 14
  • 30
0
votes
2 answers

Chef and Docker

I am a bit confused. As a part of a course we are supposed to setup a CI and CD solution using Jenkins, Docker and Chef, how the flow is going to be is not specified. We have been setting up Jenkins, so that for every new git commit it creates a…
0
votes
1 answer

Bluemix DevOps pipeline ruby app unit tests

Im currently stuck in trying to run ruby on rails unit tests on the delivery pipeline on bluemix. From what I have researched, the bluemix pipeline test function runs on ubuntu 14.04, and when trying to install ruby and rails, i keep getting…
0
votes
1 answer

Pull latest version from nexus

For example I have pushed 3 jar versions to nexus, v1.0, v1.1 and v1.2. How can I pull version "v1.1" from nexus? For general knowledge, I am using Jenkins and trying to make Continuous Delivery. So I need to get a specific version from nexus to…
Carlos Nasser
  • 153
  • 1
  • 9
0
votes
1 answer

What is the correct way to base a stage on a template when adding a new one to a Delivery Pipeline?

As a pipeline author I want to enhance the quality and speed up the process of adding more steps to a delivery pipeline by basing my new stage in the pipeline on a (preloaded) template. The template should hold the correct environment variables…
0
votes
1 answer

How to manage continuous delivery with micro services?

Right now we are working with Jenkins as our CI and CD, we are also using an Agile methodology (sprint). I was wondering how can I manage the releases of my software. For example we are developing a shopping site for a business. The development…
0
votes
1 answer

How can i deploy docker cluster for many instances via web interface?

I have a several instances of my application, like dev stand, test stand, demo stand and several production stands. My application is a cluster of microservices, packaged in docker container and managed by docker-compose. I need an ability to…
0
votes
2 answers

Bluemix Cloud Auto Scaling Service Crashed our Running Watson App now

Our Watson app based on Dialogue Service was running this morning, and this app has many users. Then I saw your 2017 DevOps tutorials video on Youtube on using Auto Scaling Service to scale web apps on Bluemix. Then I connected our this Watson app…
0
votes
1 answer

Deploy to bluemix failed with "Failed to query status of cloning repository operation."

I'm trying to setup a deploy to Bluemix button for a demo project. The project has been deploying successfully today, but has now stopped deploying with the error: "Failed to query status of cloning repository operation.". See below for a…
Chris Snow
  • 23,813
  • 35
  • 144
  • 309
0
votes
2 answers

How to host webservice on bluemix?

I have an HTTP service written in Node.js var server = http.createServer(function(request,response) {...}); server.listen(listenerPort); When I deploy to Bluemix how/where do I assign a public endpoint and port#?
DThompson55
  • 111
  • 2
  • 14