Questions tagged [devops]

This tag is for programming questions about DevOps ("development" and "operations"), which is a software development method that stresses communication, collaboration, integration, automation, and measurement of cooperation between software developers and other IT professionals. Non-programming related questions should be asked on the DevOps Stack Exchange site.

DevOps acknowledges the interdependence of software development, quality assurance, and IT operations, and aims to help an organization rapidly produce software products and services and to improve operations performance.

Venn diagram

DevOps integration targets product delivery, quality testing, feature development, and maintenance releases in order to improve reliability and security and provide faster development and deployment cycles. Many of the ideas (and people) involved in DevOps came from the enterprise systems management and Agile software development movements.

The adoption of DevOps is being driven by factors such as:

  • Use of agile and other development processes and methodologies
  • Demand for an increased rate of production releases from application and business unit stakeholders
  • Wide availability of virtualized and cloud infrastructure from internal and external providers
  • Increased usage of data center automation and configuration management tools

The goals of the DevOps workflow are best described as The three ways of DevOps

  1. Work flows from Business->Development->Operations->Customer as fast possible
  2. Increasing the feedback loops from Business<-Development<-Operations<-Customer
  3. Using fast feedback to build a culture of continuous experimentation and learning

While programming questions about DevOps are on-topic here, other questions should be asked on the DevOps Stack Exchange site.

Dev ops: WikiPedia

What is DevOps?

Related Tags

7915 questions
2
votes
2 answers

DevOps Simple Setup

I'm looking to start creating proper isolated environments for django web apps. My first inclination is to use Docker. Also, it's usually recommended to use virtualenv with any python project to isolate dependencies. Is virtualenv still necessary if…
qarthandso
  • 2,100
  • 2
  • 24
  • 40
2
votes
1 answer

Splunk: 'net stop splunk' only works *sometimes*

I'm trying to manage Splunk with Chef and ran across a problem when using Chef to programmatically start/stop/restart the Splunkforwarder service: The request did not respond to the start or control request in a timely fashion. - ControlService:…
sixty4bit
  • 7,422
  • 7
  • 33
  • 57
2
votes
2 answers

Can Web Deploy create IIS Site and Application Pool

I am working on automation of deployment process and I need to find a way to build and deploy an asp.net web site. On top of this I would also like to create IIS Site and Application Pool for newly created IIS if one doesn't already exist. Is this…
Ravi Khambhati
  • 637
  • 1
  • 12
  • 35
2
votes
2 answers

Azure PaaS and ALM - how to handle branches with single-click Publishing?

Right now I have an Azure PaaS solution with a single repo in TFS - we right-click publish from VS to an App Service and then swap slots to get code to production. Small team, disciplined check-ins (or so I thought), etc. I made a decision to…
RobVious
  • 12,685
  • 25
  • 99
  • 181
2
votes
2 answers

How to tell an AEM publish node and author node apart via REST API

I have been using package manager commands to deploy AEM packages to author nodes as part of a Continuous Deployment pipeline. I am now extending this to deploy directly to publish nodes. I need (according to the node owners) to do this slightly…
Simon Gibbs
  • 4,737
  • 6
  • 50
  • 80
2
votes
2 answers

VSTS Release Management: How to use Azure Blob as Artifact?

In my Build pipeline, I used the 'AzureBlob File Copy' task where I upload my app's Web Deploy Zip file onto Azure Blob Storage. I would like to know in Release management, if it is possible, how can I download the Zip file from Azure Blob Storage…
2
votes
1 answer

Error when Deploying Asp.net core Application with multiple Solution on Bluemix

When i try to Build & Deploy Asp.net core application with multiple solution on Bluemix, Getting following error log: -----> Restoring dependencies with Dotnet CLI log : Installing BundlerMinifier.Core 2.0.238. error: Package…
2
votes
1 answer

NuGet Package Restore in Bamboo

I am using Bamboo to do the build the ASP .NET project and following steps mentioned in below post. MSBuild with Atlassian Bamboo After running the build I found out it failed on downloading nuget packages and below message appears on summary…
Ravi Khambhati
  • 637
  • 1
  • 12
  • 35
2
votes
1 answer

Dokku Multiple app in single repo

I have a maven project pom.xml service-a service-b I want to run service-a and service-b in dokku. dokku apps:create service-a dokku apps:create service-b git remote add dokku dokku@dokku.me:service-a # how to do this for service-b How to tell…
wener
  • 7,191
  • 6
  • 54
  • 78
2
votes
1 answer

Transfer i/o files & invoke scripts betwen 2 applications running in different Red Hat Linux Server

Issue Background: Moving a Java/J2EE application from dedicated RedHat Linux server to cloud RedHat Linux server. I am analysing the Batch processing jobs involved in this application to implement similar processing in cloud environment. Current…
Danny V
  • 21
  • 2
2
votes
1 answer

Import a job in rundeck through curl command from local directory or AWS S3

I am using curl command below to import a test.xml job to rundeck but it is not working. curl -v "X-Rundeck-Auth-Token:XXXXX" -F xmlBatch=@"/home/ec2-user/test.xml" --insecure…
Arpit Garg
  • 31
  • 1
  • 1
  • 5
2
votes
1 answer

SaltStack: how do I repeat other states with context?

I created a complex state for API service, it involves git checkouts, python venv, uwsgi, nginx, etc etc. It works fine. Now I would like to turn it into a template and execute it several times per minion, with variables supplied from pillar - i.e…
DeeY
  • 922
  • 1
  • 8
  • 15
2
votes
2 answers

High availability (HA) website load balanced across both Azure and AWS?

I have a client who would like their website served via a HA infrastructure spread across both AWS and Azure (for their own reasons). My understanding is that this is not possible - you pick either AWS and Azure, then have your load balancer sit in…
tatlar
  • 3,080
  • 2
  • 29
  • 40
2
votes
2 answers

What is the diffrence between user root and jenkins?

I had problem in capistrano installation : if I connect to the server from root and then switch to jenkins user ( su jenkins ) and I run this command (cap ) capistrano work just fin , but if I connect directly to jenkins user capistrano never work…
2
votes
2 answers

Is it reasonable to containerize development environment with Docker?

In my job I needed to checkout and debug an old project, which turned out to be hell due the fact I had to build my development environment from a scratch to satisfy the desired dependencies for the desired workflow. Project configuration has been…
Tuomas Toivonen
  • 21,690
  • 47
  • 129
  • 225
1 2 3
99
100