Most Popular

1500 questions
5
votes
5 answers

Original Helm chart gone - how can I find / get it from the cluster?

I'm connected to a cluster which has a release, from a chart, but it was installed by someone else who I think used a tweaked, locally-stored chart. I don't have access to their original chart/repo. Is there a way I can retrieve it from the cluster,…
5
votes
1 answer

Heroku Slack integration without using Github

Heroku has this great Slack chatbot (chatops) that lets you send messages if a deployment pipeline succeeded or failed. Unfortunately, while setting it up and logging in to Heroku, it asks for your github account and will not let you chose a…
5
votes
2 answers

Are git pre-receive/update hooks serialized?

I'm investigating the possibility of implementing a "pre-commit" verification flow, enforced on the central SCM server side. By "pre-commit" in this paragraph I don't mean the git pre-commit hook, I really mean before the change becomes part of the…
Dan Cornilescu
  • 6,730
  • 2
  • 19
  • 44
5
votes
1 answer

Jenkins: make a credential available to all users

I'd like to allow all of our organization's users to create new pipelines in Jenkins, via Blue Ocean... This requires a Github access token, meaning I have to either require each user to use their own access token, or share the contents of an…
ivan
  • 151
  • 2
5
votes
1 answer

How to properly automate CM based on log events?

Let's say I have a number of tools like Docker bench security, some static security scanners, etc. Now I have let's say free Ansible edition (no expenses are considered). I have lots of logs, but not much automated, actionable info that triggers…
kol23
  • 159
  • 1
5
votes
1 answer

What are best practices for sharing Docker compose files with ops team to use in Docker stack

I'm looking for best practices to share the Docker compose files created by developers with the people that do the deployment. We use 2 docker compose files: docker-compose.yml and docker-compose.prod.yml. These files are included in version…
5
votes
3 answers

How can I convert a production Linux server into a docker Image or container?

I've a production Ubuntu that contains a huge number of software and dependencies, I want to 'clone' that VPS into a Docker image to be able to replicate the same environment and distribute them in different servers. Is that possible without any…
Marwen Trabelsi
  • 151
  • 1
  • 3
5
votes
1 answer

Azure Equivalent for CodeDeploy

Right now, using AWS services we have a CI and deployment pattern that works well for us. For every commit pushed to github, Travis-CI builds the project and runs tests, if tests pass, Travis uses CodeDeploy to deploy to staging (an AWS EC2). On…
fgregg
  • 151
  • 3
5
votes
1 answer

How to change Xmx settings for sonar runner?

This Question has been answered on Stackoverflow too. I have a Sonarqube instance running as a docker container. Since I updated it to version 7.1 the analysis of my greatest project fails with GC limit exceeded. If I restart the server, it might…
tgr
  • 448
  • 6
  • 14
5
votes
1 answer

Does Docker on MacOS support tmpfs?

I am new to Docker and I want to run Docker with ram only storage. In other words, I do not want Docker to save anything on persistent storage. I found out that on Linux Docker supports tmpfs. Is there any such support for MacOS? I have tried…
muhammad haris
  • 223
  • 2
  • 3
5
votes
1 answer

How to promote a build when certain value in output is above threshold?

I'm using the Promoted Builds Plugin and I'd like to promote my freestyle job to have a gold star when a certain value in my output is above a given threshold (e.g. above 1.00). Here is a sample output from backtesting jobs: Pass Profit Total…
kenorb
  • 7,841
  • 12
  • 40
  • 77
5
votes
1 answer

Advantages of Linux Containers over Docker

I'd like to understand the differences between Linux Containers and Docker, especially what kind of advantages Containers have in comparison to Docker.
5
votes
1 answer

Trigger jenkins pipeline job with Bitbucket hook

I'm missing something obvious here. Is there no way to trigger a Jenkins scripted pipeline job via Bitbucket hook? There's a bug out about it but it's been around for years with apparently no fix. Is the only way to make this work really to make…
Alex
  • 4,512
  • 6
  • 27
  • 47
5
votes
2 answers

How to add rules to Kubernetes NGINX Ingress controller from different yml definitions?

I'm trying to implement a Kubernetes cluster with a fanout pattern using an NGINX Ingress which routes traffic on multiple different hosts and paths to different microservices. The code for each microservice is hosted in their own Git repo,…
hofnarwillie
  • 151
  • 1
  • 2
5
votes
1 answer

AWS CodePipeline staged deployments

I am implementing a CICD pipeline using CodePipeline, CodeCommit, CodeDeploy and CloudFormation (I skipped the build part of the pipeline and am going to commit built code for the moment). I already have a CloudFormation template that creates the…
Kappacake
  • 171
  • 3