Most Popular

1500 questions
3
votes
2 answers

AWS CLI --profile with duration > 1h

With the AWS CLI you can assume a role using the --profile parameter: aws --profile e.g.: aws --profile admin s3 ls s3://mybucket/ That profile can be an AWS role that os to be assumed. My problem with that is…
3
votes
1 answer

Inspec tests conditional on OS version

What is the idiomatic way to tell Inspec to run test X on OS version A and test Y on OS version B? I'm aware of the technique of dumping the Chef node object to a JSON file in /tmp but that isn't doing it for me as that runs within the Test Kitchen…
Gaius
  • 1,076
  • 9
  • 17
3
votes
0 answers

Can I restart a container within an ECS task group without restarting the entire task?

I know this isn't possible through the AWS portal, but we have a scenario where we would like to restart a container that may have died, which isn't essential. The scenario is along the lines of having a task with half a dozen or so containers, one…
MrDuk
  • 295
  • 2
  • 8
3
votes
2 answers

Staging - Test multiple microservice versions together

I been trying to search for answer for this question but so far I didn't found anything useful. Our problem is that we have 2 microservices with many staging branches, each of these microservices are on different servers and environments. We want to…
3
votes
1 answer

Blue/green deployment with micro services and DNS

Currently, we have on our test environment an ECS Cluster with micro services deployed. All micro services are talking to each other through Route53 DNS CNAMEs like service1.company.com, service2.company.com, etc. Here is a simplified schema of the…
Kaymaz
  • 355
  • 1
  • 8
3
votes
2 answers

How to install a private managed Kubernetes on-premise?

Where do you start in case you need something like a managed Kubernetes solution to setup a multi-tenant orchestration solution on-premises? Any entity with its own container infrastructure has an access to the centrally managed orchestration…
Ta Mu
  • 6,772
  • 5
  • 39
  • 82
3
votes
1 answer

Stolon vs CrunchyData for HA Postgresql

I'm using helm charts with kubernetes and I'm trying to deploy High Availability Postgresql database and found this article mentioning three project that provide HA Postgresql: 1- Stolon 2- CrunchyData 3- Patroni I didn't find helm chart example…
3
votes
2 answers

Scheduling a Docker Container or Installing Scheduler in Container

I have an interesting question related to scheduling my Docker Container. I have a virtual machine with a docker image inside of it. I can spin up a container from the image that has an entrypoint (jar). I am in a dilemna on how I should schedule…
Saiyam Sethi
  • 41
  • 1
  • 5
3
votes
1 answer

Bamboo equivalent to Jenkins color

I'm currently building out a radiator screen to bridge a few different areas of our CI\CD pipeline, pulling in metrics as well as build statuses. We're also migrating from Jenkins to Bamboo In Jenkins, when you do a rest call to the job/api/json it,…
3
votes
1 answer

Dockerfile COPY command with three input parameters

I've encountered a Multi-stage Build example, where the first stage builds a ngnix server, and the second stage creates a ngnix service from that image. The second stage looks like this: ... # second stage FROM scratch COPY --from=build…
orberkov
  • 195
  • 7
3
votes
1 answer

tools to gather variant information from thousands of servers and update into database

Recently, I use ansible to gather information periodically from thousands of servers(which already installed collectd to gather CPU, memory, disks, netowrking info) in our company. For example: I need to get those information daily kernel…
CSJ
  • 131
  • 2
3
votes
2 answers

Restart agent for each build

How do I configure jenkins to restart the agent for each build? I tried to use "launch method: launch agent via execution of command on the master" in combintation with "availability: take this agent online when in demand, and offline when idle" but…
3
votes
1 answer

Why HashiCorp vault returning null?

I have a HashiCorp vault setup and it seems to return null all the time except when I ssh into the VM and then I set the values again followed by checking the values directly on the vault server. Any ideas what might be happening? I am a bit lost…
user8517
3
votes
1 answer

Configure AWS cli inside chef cookbook

I am working on setting up something with S3 and Chef, I have AWS CLI installed and working but I need to figure out how to specify the access ID and the secret access key. I know there are cookbooks out there for this but I have tried a few with no…
user8517
3
votes
2 answers

Software/devops engineer's personal dashboard recomendations

Can you recommend a free tool or GitHub project that is designed for an individual to keep up/aware of their daily tasks and operations? For example: Show perf metrics from running azure VMs in graphs or tables Show events from application…