Most Popular

1500 questions
6
votes
2 answers

Amazon ECS Basic Definitions and Terms

I'm a beginner starting to learn about Amazon EC2 and I want to get clear on the following terms, if anyone can supply a basic definition and perhaps an example to tie them together that would be…
Joy Heart
  • 69
  • 3
6
votes
1 answer

How to properly setup a multi-environment release pipeline in Azure YAML pipelines?

We have just migrated from TFS 2018 to Azure DevOps Services and we're having a hard time trying to figure out the new Azure YAML pipelines. We want to be able to: Run a build/test pipeline when a PR is pushed to develop. We've already accomplished…
empz
  • 77
  • 1
  • 8
6
votes
1 answer

Can I remove a docker image and still keep the container?

Trying to save space on the server, and I've noticed that the running containers are much smaller in size than the images I've had to pull to create the containers. I was wondering about the dependency of the running containers on the images and …
Tlink
  • 183
  • 5
6
votes
2 answers

How do we encrypt credentials in Jenkins console output

I can see credentials in Jenkins console output. How can we encrypt them? The "Mask Passwords plugin" is considered as not safe in my case.
RTenda
  • 61
  • 1
  • 2
6
votes
2 answers

Back-filling prometheus (and related system) metrics?

Projects like Thanos, which are based on prometheus storage formats, seem to say that it is impossible to back-fill data in a prometheus based system. Can anyone explain why and if there are any possibilities for changing this? Lack of ability to…
John Humphreys
  • 1,510
  • 5
  • 16
6
votes
3 answers

How long is it appropriate to keep old feature branches in git?

I am on a large team with many developers. We have a large codebase that has many feature branches from our large group of developers. We are accumulating many feature branches. We generally look to git-flow for best practices. How long should…
David West
  • 1,463
  • 3
  • 16
  • 25
6
votes
1 answer

Changing the build intermediate paths for gitlab-runner

I have a server pointed as ab12.xy24.com in which the projects are placed as: Path-1 /home/ab12/public_html/project1/* /home/ab12/public_html/project2/* ................................ /home/ab12/public_html/projectn/{project-files} I…
6
votes
2 answers

Azure DevOps service connection: lifetime of service principal

I have a hard time understanding the lifetime of the service principal created in Azure AD when creating the service connection between Azure DevOps and Azure. I do it like this: I pick the Azure Resource Manager And then i choose the…
mslot
  • 177
  • 6
6
votes
1 answer

How to improve DRP-testing of SE sites?

Have a look at what's described in the question about "Brief outage planned for Wed, May 3, 2017 at 0:00 UTC, 8pm US/Eastern (like a fire drill for computers)", which is about testing of the existing "Disaster Recovery Planning" (= DRP) of the…
Pierre.Vriens
  • 7,205
  • 14
  • 37
  • 84
6
votes
1 answer

Jenkins cannot reach nodes after upgrade

I just upgraded Jenkins from 2.39 to 2.57. After the upgrade, Jenkins can no longer communicate with my SSH build nodes. I get the following error: <===[JENKINS REMOTING CAPACITY]===>channel started Slave JVM has not reported exit code. Is it still…
lawnmowerlatte
  • 442
  • 1
  • 3
  • 13
6
votes
1 answer

How can I automatically post Codefresh build results to pull requests in Bitbucket?

I have a BitBucket Cloud repository with a WebHook to trigger Codefresh builds on Pull Requests. I would like the build results to appear as comments on the PRs, similar to the way Travis integration works for GitHub. I couldn't find any settings…
aebabis
  • 161
  • 3
6
votes
1 answer

How to pin OS package versions in Docker image

Scenario For obvious reasons I believe that every package installed in a Docker image should have their version nailed down. That's why in our Dockerfile we always enforce the OS package manager to install a specific version of a package. For…
Tran Triet
  • 819
  • 3
  • 10
  • 19
6
votes
1 answer

Internal Server Error while running docker-compose to install Gitlab

I'm installing Gitlab on my server using docker-compose based on Docker Docs. My SSH port is not the default one (22) and I have changed it to something else like 2228. So the YML file became like this: web: image: 'gitlab/gitlab-ce:latest' …
Mohammad Saberi
  • 161
  • 1
  • 2
5
votes
1 answer

What processes enable software vendor/supplier management in a DevOps way of working?

Within a traditional separate Development and Operations organisations, procedures and processes are put in place to ensure that relationships between software vendors and suppliers are maintained. These relationships exist so that when for example…
Richard Slater
  • 11,612
  • 6
  • 41
  • 81
5
votes
4 answers

ERROR: Unable to read database state: No such file or directory

I was trying to install Photon by pulling the docker image. But when I run docker build -t photon . I am getting the below error. ---> Running in 3076fb42ef8b ERROR: Unable to read database state: No such file or directory ERROR: Failed to open apk…