Most Popular
1500 questions
3
votes
2 answers
Is it a good idea to have a secondary person on call for production operations?
The primary person on call could need help in situations such as:
There are too many issues goes on
Primary needs to step out for a short amount of time
There are certain activities that are better taken up by a secondary person so that the primary…
codeforester
- 381
- 1
- 5
- 28
3
votes
0 answers
How do I disable the effective 'time limit' on editing Kubernetes deployments?
If I edit a Kubernetes deployment (e.g. kubectl edit deployment or using the Web UI), and wait too long before saving my changes and exiting, the deployment file will have changed while I was editing, resulting in an error notifying me that…
Ethan McTague
- 131
- 2
3
votes
1 answer
Provide customers with access to Azure Container Registry
I'm using Azure Container Registry for private Docker images. I want to let around 500 customers pull images and use the Docker V2 HTTP API to read metadata.
Service Principals are one way to go about this. My plan is to create a single Service…
Cocowalla
- 153
- 1
- 7
3
votes
1 answer
How to properly manage mupltiple environmental variables with Gitlab CI and Docker Swarm?
In our project we are using Docker and we have multiple services with a pile of environmental variables (mostly credentials to various dbs, mail, samba, 30+ entries in total). It all worked well with docker_compose.yml and docker-compose up -d…
ahtohio
- 53
- 4
3
votes
4 answers
Is there a way to use a Jenkinsfile from a git-submodule in a multibranch pipeline?
Background:
The nature of our project's source involves multiple long-living branches, each one has its own Jenkins job (manually created).
Multibranch limitation:
Unfortunately we do not use a Multibranch Pipeline to organize the project, because…
maze
- 143
- 1
- 6
3
votes
2 answers
Best way to create a Ci/CD pipeline to reduce bugs and facilitate refactor
I started a project with a small team (3 people ) and we had to hack a lot and built a big application with no unit tests, relying only on manual. Now we have a huge technical debt and we started implementing CI/CD. Our goal is to start doing…
Daniel Vianna
- 163
- 6
3
votes
1 answer
How to get other than "" when interpolating {{ .Environment.SOME_VAR }} (with SOME_VAR set) into cache key?
Using this configuration:
version: 2
jobs:
test:
docker:
- image: nixorg/nix:circleci
environment:
NIXPKGS_REV: 3c83ad6ac13b67101cc3e2e07781963a010c1624
steps:
- restore_cache:
name: Restore Nix Store Paths
…
Jean-Paul Calderone
- 151
- 5
3
votes
1 answer
SqlPackage.exe: Error SQL0: Required contributor with id 'id' could not be loaded
while trying to build dacpac using sqlpackage.exe, we are getting the following error
Microsoft.SqlServer.Dac.DacServicesException: An error occurred during deployment plan generation. Deployment cannot continue.
Error SQL0: Required contributor…
Shubh Rocks Goel
- 151
- 4
3
votes
1 answer
How to trigger jenkins pipeline only on merge to develop branch from github webhook trigger?
I am having a problem to trigger Jenkins pipeline job based on merge any branches to develop branch only. I also did not find any webhook for merge as like bitbucket. I also tried using pull request but that triggered the job on any changes to the…
Manish_
- 108
- 1
- 1
- 7
3
votes
1 answer
How to set 'image tag mutability' using CloudFormation?
When one would like to create an Elastic Container Registry then it is possible to set 'image tag mutability':
Image tag mutability
The image tag mutability setting for the
repository. Select "immutable" to prevent image tags from being
overwritten…
030
- 13,235
- 16
- 74
- 173
3
votes
2 answers
Cross-Platform Deployment Tasks in Bamboo
Currently most of my deployments are using a dedicated agent and using Robocopy (windows) or SSH (linux/osx). A common scenario for my deployments are copying .dlls from a .net project to a server.
I am trying to consolidate capabilities to allow…
Wesley Rolnick
- 2,747
- 11
- 26
3
votes
1 answer
Terraform | After upgrading to 0.12 receive a lots of error "unsupported value for "%s" at 0: string required."
After upgrading to 0.12 I receive a lots of error like:
Error: Error in function call
on main.tf line 136, in data "template_file" "inventory":
136: formatlist(
137:
138:
139:
140:
|----------------
|…
Stailas
- 75
- 3
- 6
3
votes
1 answer
Is it safe to run "Repair - Reconcile component database from blob store job" in Nexus 3
We have a nexus 3.12.1 and its daily storing hundreds of artifacts which are build from Jenkins. The problem is there are too many files present in blob store are not showing in Nexus Console. Actually we don't want these files but that is filling…
TPS
- 85
- 9
3
votes
1 answer
What's are the advantages of using CloudBees Core over Jenkins?
I have tried Jenkins on my own and about to propose an enterprise grade CI/CD product to my development team which is around 40 people. CloudBees Core come at the top of my selected list since it is based on Jenkins and enterprise friendly as…
Min Htet Oo
- 33
- 3
3
votes
1 answer
Scale number of pods in OpenShift from oc command line
I am new to Openshift , and want know how to change the number of pods of specific deployment from oc command line.
I tried to do:
oc scale dc name_of_deployment--replicas=2
Error from server (NotFound): deploymentconfigs.apps.openshift.io…
user16571
- 71
- 1
- 5