Most Popular
1500 questions
4
votes
4 answers
Is it possible to mount an s3 bucket as a point in a docker container?
I have a Java EE packaged as war file stored in an AWS s3 bucket. I will like to mount the folder containing the .war file as a point in my docker container. I have managed to do this on my local machine. Below is an example of a JBoss wildfly…
christian Martin
- 85
- 1
- 5
4
votes
3 answers
What options are available to encrypt the content of git repositories?
git-crypt, git secret were found. What is your personal preference and why?
A couple of months ago, I have applied git-crypt. It was quite hard to set it up and the secrets are stored as binaries. I wonder whether git-secret is less cumbersome to…
030
- 13,235
- 16
- 74
- 173
4
votes
1 answer
CI platforms versus simple git hooks
Newbie to devops here and apologies this is probably a stupid question, but, what is the point of CI platforms? It seems to me that just by using git hooks I can automatically run all my unit tests before a commit and block the commit if needed. If…
Neil
- 157
- 4
4
votes
1 answer
GitLab CI/CD job without pulling LFS files?
When our GitLab CI/CD job runs, it first pulls a Docker image and then git clones the entire repo. Afterwards, the Build commands are executed in the Docker image, etc.
Is it possible to only clone the non-LFS files from the repo? ... Or perhaps…
rickhg12hs
- 191
- 1
- 6
4
votes
1 answer
Building a CI/CD pipeline on GCP
I have a containerized web application on GitHub and I would like to build a CI/CD pipeline on GCP consisting of a trigger stage, a build stage and a deployment stage and be able to do continuous integration and deployment. What GCP tools can I use…
christian Martin
- 85
- 1
- 5
4
votes
1 answer
How to download a VM image from GCP?
I do not see a download button. I would like to download a VM image that was created on GCP using Packer and I would like to run it locally in Virtualbox.
030
- 13,235
- 16
- 74
- 173
4
votes
2 answers
helm - cannot get resource "namespaces" in API group
I installed Kubernetes, helm on the Ubuntu 16.04.6 Box, I want to deploy kubernetes-dashboard using helm but getting below error while installing it
$ helm install stable/kubernetes-dashboard --name dashboard-demo
Error: release dashboard-demo…
Nullpointer
- 255
- 1
- 4
- 11
4
votes
1 answer
Why does `docker-login` fail in BitBucket pipelines?
Aim
to login to a private docker registry using BitBucket pipelines.
Attempt
Based on this documentation the following bitbucket-pipelines.yml:
image: docker:latest
pipelines:
default:
- step:
script:
- docker login -u…
030
- 13,235
- 16
- 74
- 173
4
votes
1 answer
Why has Hudson been renamed to Jenkins?
There are two similar CI: Hudson and Jenkins. The Jenkins project was forked from Hudson after a dispute with Oracle. Why was it renamed back to Jenkins and what was the dispute about?
kenorb
- 7,841
- 12
- 40
- 77
4
votes
1 answer
Validating release artifact provinence
While this question could be posed in a vendor agnostic fashion - I'll gear it around Github and Azure to give it some context.
I am planning an open-source project, in a sensitive business domain (banking). As such, I feel it would be important for…
Adam
- 141
- 2
4
votes
1 answer
Override Ansible task parameters from role
I'd like to be able to define a task with default parameters:
- name: Create a new user
user:
name: "default"
password: "password"
state: present
Then, from my playbook, I'd like to be able to do something like this:
roles:
-…
Ryan O.
- 275
- 2
- 11
4
votes
1 answer
How to use same Helm dependency in many charts?
For example, I have this charts structure:
├── parentChart
│ ├── charts
│ │ ├── childChart1
│ │ │ ├── charts
│ │ │ │ └── postgresql-3.11.6.tgz
│ │ │ ├── Chart.yaml
│ │ │ ├── requirements.lock
│ │ │ ├──…
Alexey Vinogradov
- 61
- 1
- 5
4
votes
1 answer
Is it allowed to remove mounted directory from inside Docker container?
I have a container which is based on tomcat image and I have mounted 'webapps' folder to hosted machine directory '/app/webapps'. Now for some updations I want to remove this webapps folder from inside the container but when I execute command: rm…
Jaffy
- 141
- 2
4
votes
2 answers
Automate Helm's tiller installation with Terraform
I need to be able to generate disposable kubernetes environments using terraform. These environments should use helm for application deployment and ideally have tiller installed during the terraform resource provision.
What is the best way of…
Navarro
- 183
- 5
4
votes
4 answers
How can I convince someone that 100% reliability is not the right target for anything?
It's a fundamental principle of DevOps and SRE that failure is normal and setting a goal of perfect reliability is misguided. But sometimes IT execs and business leaders push back on the idea. They believe the business needs 100% reliability. What…
Vivek Rau
- 91
- 4