Most Popular
1500 questions
3
votes
1 answer
Do you use existing automation code (cookbooks/playbooks/dockerfiles/etc) or you write your own from scratch?
I noticed that many cookbooks/playbooks/... are not of particularly high quality, and even if they are they rarely cover all cases. So it should be expanded with my custom logic everytime, while 90% of the *book remains unused (+ adds…
ilya-lesikov
- 31
- 1
3
votes
2 answers
Git Workflow with User Acceptance and Staging Environments
I'm trying to streamline/standardize a git workflow in my workplace. The current delopment process is as follows:
Pull 'development' branch
Write code and commit and push to 'development' branch
Cherry pick from 'development' into 'testing' branch…
David
- 131
- 1
- 3
3
votes
1 answer
Saving time on an EC2 instance
I have started playing around with AWS (privately). I have one free tier Amazon Linux 2 VM running right now, which serves a "fat" service (in a docker container) to myself and one other person. It has an Elastic IP associated with it.
We use the…
AnoE
- 4,876
- 13
- 25
3
votes
2 answers
Does Jenkins support cloning git submodules with "git@" (not "https") URLs?
Had some issues with Jenkins when trying to checkout a project with Git nested submodules. It failed with a permission error when cloning the submodules:
hudson.plugins.git.GitException: Command "git submodule update --init --recursive some/path"…
Philipp Claßen
- 1,675
- 2
- 16
- 30
3
votes
0 answers
Encrypted at rest persistent volume in kubernetes?
Is there a recommended approach to using encrypted file system for persistent volumes in kubernetes?
Perhaps mounting a LUKS fs disk image file ?
barrymac
- 257
- 1
- 5
3
votes
2 answers
Logstash multiple pipelines going into same index
I'm trying to set up a centralized syslog for multiple log sources.
So I have a logstash that has two separate inputs and two separate outputs
However for some reason the data from one of the inputs ends up in both indexes
What am i doing…
Saar Grin
- 71
- 2
- 4
3
votes
2 answers
How do I autostart Jenkins agent machines?
To save money, I would like a large number of agent machines to be stopped and started up only when needed. Better yet, a single VM should be copied and launched on demand.
I am using Google Cloud Platform.
I see the Kubernetes plugin, used in…
Joshua Fox
- 131
- 4
3
votes
1 answer
use of nginx server_name
I am new to nginx, I have configured my consul with nginx.
It's working but I have few doubts in my configuration.
here is my configuration
upstream consul {
server 127.0.0.1:8500;
}
server {
listen 80 default_server;
server_name…
Ravat Tailor
- 153
- 6
3
votes
2 answers
Ultimate docker permission solution
I'm using docker some time and I like the conception very much. But I found a thing is a big problem for me.
I'm talking about permissions. While I'm not worrying about production, setting up my docker development environment becomes hell, because…
Pawel
- 31
- 1
- 3
3
votes
2 answers
WinRM / WSMan - getting SSL handshake error / TCP RST when connecting with IP address, correct connection when connecting with hostname
While using Ansible to manage some AWS based Windows machines, when connecting using the IP as destination, on some machines I'm getting an SSL Error
credssp: HTTPSConnectionPool(host='18.217.233.26', port=5986): Max
retries exceeded with url:…
Saar Grin
- 71
- 2
- 4
3
votes
1 answer
Is it possible to package an application in a .nupkg when creating an application revision in AWS CodeDeploy?
My build process packages my application in a .nupkg instead of a .zip.
Assuming my .nupkg contains a correctly-implemented appspec.yml and is otherwise appropriately bundled, can my deployment revision use it?
Anthony Neace
- 1,484
- 1
- 12
- 17
3
votes
1 answer
Docker swarm replica stays 0/1 and service stays in status new
I have a problem with my docker swarm. I created a new service with the following command:
docker-compose config | docker stack deploy -c - serviceNameX --with-registry-auth
The docker-compose file looks like that:
version: '3.1'
services:
…
anstue
- 176
- 1
- 5
3
votes
2 answers
Automating creation of new VM and pushing code to server
Automating creating of new VM and pushing code to server
Hi all,
I am writing a integration test for a client-server application. To simulate
the production server setup, and to update the code, I set up VMs on my
computer. The application runs on a…
alpha_989
- 131
- 3
3
votes
2 answers
How do you know which secrets and credentials of your production services were used, and by whom/what?
The context of the question is Secrets management.
As the title says, how do you know which secrets and credentials of your production services were used, and by whom/what?
Zvika Nadav
- 113
- 2
3
votes
0 answers
Docker Swarm Service Health Check?
Docker Swarm provides a nice way to configure container health checks in the Docker file or a stack compose file. Health status of a container can be checked using docker inspect or just docker ps on the hosting machine.
However, I…
Ashley Aitken
- 131
- 1
- 4