Most Popular

1500 questions
7
votes
2 answers

MSSQL and AD in a Docker Container

I am attempting to use Active Directory authentication with SQL Server on Linux running inside the official MSFT Docker container for MSSQL (https://hub.docker.com/_/microsoft-mssql-server) I am in the midst of working through this tutorial, but I…
David West
  • 1,463
  • 3
  • 16
  • 25
7
votes
2 answers

Git-based CI/CD Pipeline for Monorepo

Are there established CI/CD strategies & best practices for working with a distributed team on a project that is utilizing monorepos? I can provide two specific use-cases: Working on content distribution, e.g. a daily/weekly HTML email newsletter,…
Jared
  • 73
  • 1
  • 6
7
votes
1 answer

How do you monitor and alert on thrashing containers?

Are there any proposed best practices for how to monitor for thrashing containers? We're in a situation where we have containers that might try to come up and will crash -> restart a few dozen times without anyone noticing. However, it's "normal"…
MrDuk
  • 295
  • 2
  • 8
7
votes
2 answers

Is it possible to locate the temp keypair generated by Packer?

I`m creating a new image and everything is working. I would like to debug via ssh during the instance creation. A temp keypair is created and attached to the temp instance. My question is, can I get this keypair somewhere in order to debug it? ==>…
armandomiani
  • 171
  • 1
  • 5
7
votes
1 answer

How can I autoscale instances based on Kafka topic lag?

I have autoscaling groups that I want to dynamically scale up/down based on the amount of lag showing in certain Kafka topics. There's a 1:1 relationship between topic and autoscaling group that needs to be scaled. I'm fairly sure I can't use…
dededecline
  • 183
  • 2
  • 8
7
votes
1 answer

Are there any best practices and/or tools for 'nohup' monitoring?

I use nohup for starting Ansible playbooks inside the Master which is spawned via boto3 from AWS Lambda. This playbook creates multiple workers, make them do some tasks, and terminates them. So, I want to design/build a reliable monitoring system…
Dawny33
  • 2,816
  • 3
  • 23
  • 62
7
votes
1 answer

How to integrate multiple "feature" react apps into monolithic PHP repo?

We have a mono-laravel-repo and are in the process of migrating to a cleaner, easier to maintain dev reboot. We have recently moved towards migrating our existing PHP based views into multiple React-based "features" that live in a /react directory…
7
votes
1 answer

What are alternatives for Docker in Docker (dind) usage for Jenkins slave running in container?

When using Jenkins slave running in container, what are alternatives or "safe" (in terms of security) implementations for Docker in Docker. Architecture example: Jenkins master running as Docker container Jenkins slave running as Docker…
rombob
  • 657
  • 4
  • 16
7
votes
3 answers

What do businesses that employ multiple development teams use to implement DevOps in a structured manner?

Adding DevOps practices to a single development team is a relatively simple proposition as it usually comes down to introducing either people to the team to build up a DevOps, Release Engineering or Platform Engineering capability within an…
Richard Slater
  • 11,612
  • 6
  • 41
  • 81
7
votes
2 answers

How can I make use of bash functions in a makefile?

If I need to use something like NVM in my makefile, I run into a problem, because NVM exports some bash functions that are not available in Make, even if my shell is defined as bash in the makefile. How do I cause make to "inherit" all the parent…
Assaf Lavie
  • 1,241
  • 11
  • 17
7
votes
1 answer

How to automate submission to Amazon Marketplace?

Is anyone aware of a way to automate the submission of an AMI to Amazon's Marketplace? I want to take a public AMI and share it to the AWS Marketplace so it can be scanned for listing and then submit the product metadata sheet. Our preferred…
lawnmowerlatte
  • 442
  • 1
  • 3
  • 13
7
votes
3 answers

Jenkins: What is a build?

I'm coming from Ops and I don't have a heavy software engineering background. In Jenkins, what is a "build" exactly and why is it named such? When I build a shell/powershell script, I'm not really compiling anything, am I? Then why is Jenkins…
user1330287
  • 71
  • 1
  • 3
7
votes
1 answer

Which university has a good postgraduate DevOps program?

I am looking for a university that has a good PhD program in theoretical DevOps topics. Especially any program that is trying to advance the beyond Deming's Theory of Profound Knowledge, Goldratt's Theory of Constraints and other related topics. Do…
Jiri Klouda
  • 5,807
  • 1
  • 21
  • 53
7
votes
1 answer

Ansible how to know what return value is provided by a specific module

From Ansible's official doc Ansible modules normally return a data structure that can be registered into a variable, or seen directly when output by the ansible program and Ansible modules normally return a data structure that can be registered…
Tran Triet
  • 819
  • 3
  • 10
  • 19
7
votes
5 answers

What is the future of DevOps in the age of serverless?

My senior recently argued that DevOps related roles such as DevOps Engineer, SRE, etc, will be less relevant once serverless matures. He pointed me to Containers won the battle, but will lose the war to serverless. Can you see less and less DevOps…