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
1 answer

Run Java Jar as Service via Ansible on Ubuntu

What is the best approach to run a standalone .jar as a service via Ansible? I need run metabase.jar via ansible on an Ubuntu EC2 host. Should I daemonize it? Is there any recommended method or library? Ideally I would like to manage the state via…
RedRobot
  • 53
  • 1
  • 8
2
votes
2 answers

How to migrate a proxy NPM repository in Nexus 3?

I have a Nexus 3 installation with these NPM repos defined: npm-all (group) npm-internal (hosted) npmjs-org (proxy) I would like to be able to populate the npm proxy repository on an Internet connected machine, and then migrate it to a Nexus…
Vik David
  • 3,640
  • 4
  • 21
  • 29
2
votes
2 answers

how to install ADOP a.k.a. accenture devops platfomr in local desktop without using server?

I am working at a start company(around 50people) and would like adopt devops platform in our company, we came to know that ADOP a.k.a. Accenture devops has some good reviews so would like to install it and check how it works. we are able to install…
A. A
  • 21
  • 3
2
votes
2 answers

Unable to deploy Docker composer to AWS ECS

Despite following numerous tutorials and guides, including official documents, I'm constantly hitting a brick wall when attempting to deploy my docker containers to ECS. Here's what I've done: ecs-cli configure --cluster my-cluster ecs-cli up…
Gavin
  • 6,284
  • 5
  • 30
  • 38
2
votes
2 answers

(How) Does Gravitational Teleport fit into container/Kubernetes environment?

I am trying to evaluate Gravitational Teleport to be for maintaining our own architecture as we will expand soon looking into building clusters. It seems a containerized cluster using Kubernetes is where the bleeding edge is happening and SSH'ing…
Mahoni
  • 7,088
  • 17
  • 58
  • 115
2
votes
1 answer

How to run the gunicorn bind command in background in Jenkins?

I am using gunicorn app.wsgi:application --bind=0.0.0.0:1312 --daemon to run a Django application in backgound .It is working on the ubuntu terminal But its not working in jenkins .Its giving 502 nginx error. nginx error.log: (111: Connection…
Sidhartha
  • 988
  • 4
  • 19
  • 39
2
votes
2 answers

How to run Ansible as root only at first pass?

This is a step-by-step of what I'm trying to accomplish via Ansible: SSH as root Install python(not present in ubuntu), and other basic packages. Create new deploy user and config /etc/ssh/sshd_config such that PasswordAuhentication no and…
lllllll
  • 4,715
  • 6
  • 29
  • 42
2
votes
1 answer

/usr/sbin/apachectl: line 92: 10747 Segmentation fault: 11 $HTTPD "$@"

Cannot start apache on mac ox x 10.13. /usr/sbin/apachectl: line 92: 10747 Segmentation fault: 11 $HTTPD "$@"
Anurag Jain
  • 461
  • 2
  • 8
  • 21
2
votes
1 answer

Integrating sonarqube with Ldap

I google a lot but I couldn't find an answer for how to integrate LDAP with sonarqube. Most of the documents are showing that we need to modify in /sonarqube-6.2/conf/sonar.properties as below; # LDAP configuration # General Configuration…
user7486728
2
votes
1 answer

Why doesn't logstash produce logs?

i read below articles to understand logstash technology i established ELK environment. https://tpodolak.com/blog/tag/kibana/ input { file { path => ["C:/logs/*.log"] start_position => beginning ignore_older => 0 …
loki
  • 2,926
  • 8
  • 62
  • 115
2
votes
1 answer

check virtualenv activation in makefile

I am working on an app which has frontend (angularjs) and backend(python, flask framework). I am creating a Makefile for this app. To install backend dependencies using requirements.txt file, I want to check if virtualenv has been activated or…
yugantar kumar
  • 1,982
  • 1
  • 23
  • 33
2
votes
3 answers

Deploy web app via Jenkins

I have recently started to mess about with Jenkins and am unsure how to deploy my web app to a basic server. I've gotten into the Pipeline (https://jenkins.io/doc/book/pipeline/) and it seems like a fantastic way to work. Where I'm a bit stuck is…
Gurnzbot
  • 3,742
  • 7
  • 36
  • 55
2
votes
2 answers

Nexus: How can I download latest minor version of artifact using nexus rest api

I want to download latest minor version of an artifact from Nexus. Something like below: http://local:8081/service/local/artifact/maven/content?g=com.mycompany&a=my-app&v=3.0.x Nexus rest api doesn't accept version like 3.0.x or 3.0.*. I can't use…
Ankur Lathi
  • 7,636
  • 5
  • 37
  • 49
2
votes
1 answer

jenkins endpoint in tfs 2015

I am trying to queue a build from tfs which was already setup on our Jenkins server by adding a build step called queue a Jenkins job in TFS ci pipeline. for this to happen we need to create a Jenkins endpoint first. when I tried configuring the…
pramod
  • 21
  • 4
2
votes
1 answer

Docker in Ubuntu switching filesystem to overlay is not supported?

I'm running docker in a vagrant virtual box with Ubuntu on a Mac logged in as root user and I'm trying to switch from devicemapper to overlay but I'm getting an error saying: root@vagrant-ubuntu-trusty-64:/# service docker stop docker…
Kyle Truong
  • 2,545
  • 8
  • 34
  • 50