Most Popular

1500 questions
4
votes
2 answers

macOS testing on Desktop: Docker containers vs. Homebrew installation

Often I test some stuff on my MacBook. Mostly database and data store related stuff (MongoDB, MariaDB, Postgres). I install the software with Homebrew and test. I wonder if I should switch to docker? What are pros and cons Homebrew vs. Docker for…
Sybil
  • 452
  • 4
  • 11
4
votes
1 answer

Process guidance for new development team leader

I've just recently taken over leadership of a small team of developers within our group. The previous Team Leader was very much into micro-management and ran the development stream in a six week waterfall approach. The developers were assigned the…
philcart
  • 59
  • 5
4
votes
2 answers

How can I transfer an Azure DevOps project from one organization to another?

In my DevOps organization, I've created a project for a client with git repo assets, boards, pipelines, etc. I'd like to transfer the project ownership from my organization to my client's organization. How can I do this? It's easy enough to switch…
user658182
  • 151
  • 1
  • 1
  • 3
4
votes
2 answers

Use buildx in Jenkinsfile for platform specific build

I'm currently building my docker image declaratively in a Jenkinsfile by: app = docker.build("...") Now I need to generate a platform specific build for ARM64. For this purpose docker buildx build --platform linux/arm64 ... must be used. I there a…
Sam
  • 141
  • 2
4
votes
2 answers

Strange behaviour of Docker CE/EE client on Windows - timeout for certain image layers

With a private registry, I cannot pull images because certains image layers fail to download. The pattern seems to be that this happens with larger, 50MB sized layers. It shouldn't be a registry neither network problem as colleagues with other…
Ta Mu
  • 6,772
  • 5
  • 39
  • 82
4
votes
1 answer

Salt Stack Reporting - Executing commands based on environment

Salt allows users to assign machines to environments by setting in /etc/salt/minion: environment: example You can then execute environments for that state with the command salt '*' state.apply saltenv=example However, it appears that the same…
James Shewey
  • 3,734
  • 1
  • 15
  • 38
4
votes
1 answer

Deployment group not showing in Azure DevOps release pipeline

I am trying to follow these instructions: https://docs.microsoft.com/en-us/azure/devops/pipelines/apps/cd/deploy-webdeploy-iis-deploygroups I get to step 6 under "Define your CD release pipeline" and get stuck. I have a Deployment group created and…
Chris
  • 181
  • 1
  • 6
4
votes
2 answers

Jenkins configuration to support multi-config multi-branch CI

Here are my requirements and I go back-and-forth on how to achieve them: Must build Java spring-boot apps Artifacts must be released to artifactory repository Docker image to be built directly relating to the artifact…
4
votes
1 answer

From inside a Docker container, how can I consume an API that is on the machine's localhost?

First of all, please forgive me if any information is missing or if my question does not meet the standards required by the site. I have very basic knowledge of docker, linux and networking and I am lost. I use Ubuntu version 20.2 and I have docker…
Rafael Arend
  • 43
  • 1
  • 1
  • 3
4
votes
2 answers

Ingress vs Load Balancer

I am new to kubernetes and I am trying to expose an application publicly. I am using Scaleway as the cloud provider (if it matters). From what I understand, there are multiple ways of doing this. Create an Ingress Controller By doing this, the…
4
votes
3 answers

Azure DevOps Clean after pipeline run

I have self-hosted build agents using Azure DevOps. We have the clean flag in the checkout step, however we run out of space sometimes. What is the preferred way of cleaning the agents' work directories? The problem is, that the clean process is in…
zerocukor287
  • 151
  • 1
  • 7
4
votes
1 answer

Configure Docker to use SSL for a private registry on Windows 10?

Trying to use a customer registry from a Windows 10 system - a native Docker client in PowerShell. PS > docker --version Docker version 17.06.0-ce, build 02c1287 PS > docker pull REPO_URL/foo-bar:0.1 Error response from daemon: get…
Ta Mu
  • 6,772
  • 5
  • 39
  • 82
4
votes
1 answer

How to auto generate a diagram out of my AWS VPC?

Does AWS provide a tool to visualize my VPC? I would like to generate an image file with all services (shown as icons) provisioned inside a VPC. Tools like draw.io and others are available. But doesnt AWS provide a cloud native tool for this?
Biju
  • 255
  • 3
  • 8
4
votes
2 answers

RPM's, VM's : time consuming

I am constantly delivering RPM packages upon every new version of some project. Every version is dependent on some developing prerequisites CentOS 7 git Some npm packages. Some Python PIP packages Some shared objects I'm dealing with this issue…
Amit Arie
  • 41
  • 1
4
votes
1 answer

CircleCI manually approved Deployment with Rollback

The new CircleCI 2.0 configuration allows to have a step of type approve which waits for user input. Is there some way to not just deploy code using manual stop, but also have a rollback to a previous version based on user input?
Evgeny Zislis
  • 8,963
  • 5
  • 38
  • 72