r/DevOpsLinks 7h ago

AIOps SQL query analyzer that generates dialect-specific index DDL across 5 databases without connecting to any of them.

Thumbnail autoshiftops.com
1 Upvotes

r/DevOpsLinks 1d ago

DevOps What type of profile do I need to hire?

Thumbnail
1 Upvotes

r/DevOpsLinks 5d ago

DevOps Asegura tu pase VIP para el DevOpsDays Santiago 2026: Así te lo puedes ganar

Thumbnail
sredevops.org
1 Upvotes

r/DevOpsLinks 8d ago

DevOps I built a replacement for the abandoned Feature Timeline / Epic Roadmap extension (epic-centric roadmap over Azure Boards)

1 Upvotes

r/DevOpsLinks 9d ago

DevOps Angos: an HA OCI registry coordinated through S3 conditional writes

1 Upvotes

Just sharing a container registry I developed with simplicity and efficiency in mind.

It support online garbage collection, mTLS with hot reloading, pull through cache, advanced access policies, etc. In most favorable case (S3 compatible backend with support of conditional operations), it has no additional components : only itself and an s3 bucket.

Being developed in async rust and leveraging streaming operations as much as possible, its memory footprint and cpu usage is very small.

https://github.com/project-angos/angos


r/DevOpsLinks 12d ago

Monitoring and observability Observability with Grafana, Loki, Prometheus, Tempo and Alloy: Building a Complete Local Stack for Next.js, .NET, and PostgreSQL

1 Upvotes

Greetings to all DevOps enthusiasts.

Not long ago I had struggled with observability principles and decided to learn it by building from scratch. I have published an article on Medium that is a complete setup for observing local system. The tech stack consist of a nextjs frontend, .NET backend and a postgresql database instance, all reproduced by a single docker-compose file. For anyone going to the field or wanting to learn more about SRE constructs and observability, here's the link: https://medium.com/@stefanpopov2409/building-a-complete-local-observability-stack-for-next-js-a339afda231e

In the article, I have put the repository link and the instructions needed to reproduce this setup locally. For anyone reading it, just know it is greatly appreciated and means so much, I just hope that's a small contribution of mine to the DevOps community. I plan to add some frontend observability configuration with Grafana Faro implementation, and some nifty panels in the dashboards as well.

Best of luck, thanks for the read.


r/DevOpsLinks 16d ago

DevOps I started a YouTube channel focused on practical SRE & Observability. Looking for feedback.

Thumbnail
1 Upvotes

r/DevOpsLinks 17d ago

DevOps Helm 3 vs Helm 4: Major changes

Thumbnail medium.com
10 Upvotes

r/DevOpsLinks 17d ago

Kubernetes Kyverno in Kubernetes: A Complete Guide to Policy Management

Thumbnail medium.com
2 Upvotes

r/DevOpsLinks 18d ago

DevOps Certificate Lifecycle management

Post image
1 Upvotes

r/DevOpsLinks 19d ago

DevOps Built an E-Commerce Platform for Local Shops with Multi-Marketplace Inventory Synchronization?

1 Upvotes

Disclosure: I run a small software consultancy in India.

We recently built an e-commerce platform for local shops using FastAPI, Docker, and Linux servers. The platform integrates with multiple B2C marketplaces, and one challenge we're working on is keeping inventory synchronized across all sales channels to avoid overselling and maintain accurate stock levels in near real time.

For those who have built or operated similar systems:

  • Do you use event-driven architectures or periodic sync jobs?
  • How do you handle conflicts when two platforms update inventory simultaneously?
  • Are there any tools or patterns that have worked particularly well for you?

I'd love to hear about your experiences and lessons learned.

DM


r/DevOpsLinks 19d ago

AIOps A self-hosted AI gateway with real resilience: circuit breaker + per-key cooldown + per-model lockout, Docker/Redis-ready (MIT)

1 Upvotes

For the platform/DevOps crowd: sharing a self-hosted AI gateway I built with production resilience in mind (disclosure: I'm the maintainer). It sits between your services and 237 LLM providers as one OpenAI-compatible endpoint.

The resilience model is three independent layers: a per-provider circuit breaker (opens on 5xx/timeout, half-open probe after a reset window), a per-connection cooldown (one bad key backs off exponentially while others keep serving), and a per-model lockout (one model 429 doesn't disable a whole connection). Fallback across the provider ladder happens in milliseconds, so an upstream degradation doesn't cascade to your apps.

A 10-engine compression pipeline — the part most routers don't have. Every request flows through a transparent compression pass you can toggle/stack per combo. Instead of one trick, it stacks the best of the open-source ecosystem: RTK filters command/tool output (git diffs, test logs, builds) at 60–90%, Microsoft's LLMLingua-2 does ML semantic pruning, Caveman handles prose, session-dedup strips repeats across turns. Critically, code, URLs and JSON are preserved byte-perfect, and a default-on inflation guard throws the compressed version away and sends the original if compressing would actually grow the prompt — it never makes things worse. On tool-heavy sessions that's ~89% average input-token reduction (an 8k-token git diff becomes a few hundred). Full credit to every upstream project (RTK, Caveman, LLMLingua-2, Troglodita) is in the README.

Ops-wise: one-click Redis, Docker (AMD64+ARM64), Cloudflare Workers / Deno Deploy relay deployers, a remote mode (run the CLI locally against OmniRoute on a VPS), 100% local, zero telemetry, AES-256-GCM at rest.

For context on whether it's worth your time: it's grown to ~9.8K GitHub stars, 1,490+ forks and 280+ contributors in ~4.5 months, with 21,000+ automated tests and 1,830+ issues closed — so it's a battle-tested project, not a brand-new experiment.

GitHub: https://github.com/diegosouzapw/OmniRoutenpm install -g omniroute

How do you currently handle multi-provider LLM failover in prod — gateway, service mesh, or app-level?


r/DevOpsLinks 20d ago

Containerization I Updated My Database Backup Guide with a Config Generator Tool

3 Upvotes

I refreshed my most-read article on automated database backups with Docker Compose. The underlying image moved to nfrastack/container-db-backup, so I updated the whole guide with the new multi-job config format. I also built a little JavaScript configurator that generates docker-compose and .env files on the fly. If you run multiple Laravel projects and want scheduled backups without manual copy-paste, this might save you some time.

https://danielpetrica.com/easy-database-backups-with-docker-compose/


r/DevOpsLinks 20d ago

Other How to Fix Common Git Problems

Thumbnail
faun.dev
2 Upvotes

r/DevOpsLinks 21d ago

DevOps We are building Ai-powered infrastructure so, need to clarify doubts regarding infrastructure requests.

Thumbnail
1 Upvotes

r/DevOpsLinks 21d ago

DevOps New to DevOps – What Should I Learn Next?

Thumbnail
1 Upvotes

r/DevOpsLinks 22d ago

Cloud computing Tired of opening 20 tabs of vendor docs to compare AWS/Azure/GCP, so I built this (Infra Atlas)

Thumbnail
infraatlas.dev
2 Upvotes

Hey everyone,

If you work with multi-cloud or tech/sales engineering, you know the pain. Every time you need to map equivalent VMs or check specific managed Kubernetes limits between AWS, Azure, and GCP, you end up with 20 open tabs of messy, outdated vendor documentation.

I got tired of doing this manually, so I decided to build a central reference handbook to save my own sanity the Infra Atlas.

Full disclosure: I handled the data structure and technical logic based on my own cloud experience, but I used AI to help me spin up the frontend and accelerate the build.

What’s live on the site right now:

  • Equivalent-SKU Finder: A quick way to map VMs/instances between the big three based on family and actual specs.
  • Kubernetes Atlas: Side-by-side comparison of EKS vs AKS vs GKE (SLAs, node limits, etc.).
  • GenAI Atlas: Mapping models, regions, and fine-tuning across Bedrock, Azure OpenAI, and Vertex AI.
  • Toolbox: Just a clean list of dev-first tools I actually like (Bruno, OpenTofu, OrbStack, etc.).

There are no ads, no sign-ups, no tracking, and no newsletter popups. It's just a clean, static tool.

Since the data changes constantly, I’d love to know if you see any missing metadata or if there's any specific cloud provider you think I should add next. Hope it's useful to some of you!


r/DevOpsLinks 23d ago

DevOps Looking for referrals

Thumbnail
1 Upvotes

r/DevOpsLinks Jun 23 '26

DevOps It is 2026 and I am still building a private module registry :)

Thumbnail unmold.dev
0 Upvotes

r/DevOpsLinks Jun 20 '26

DevOps Open-source BPF validation platform.

Thumbnail gallery
1 Upvotes

r/DevOpsLinks Jun 18 '26

DevOps Devops support

Thumbnail
1 Upvotes

r/DevOpsLinks Jun 12 '26

Cloud computing GitHub - link-society/localaz: Vibecoded local Azure emulator inspired by LocalStack (AWS) and localgcp (GCP)

Thumbnail
github.com
1 Upvotes

r/DevOpsLinks Jun 09 '26

Kubernetes Right-sizing pod requests didn't shrink our node count. The fix was decoupling resize from consolidation, curious if others solved it differently.

Post image
1 Upvotes

r/DevOpsLinks Jun 09 '26

DevOps Supply Chain Attack - Shai Hulud

Thumbnail
1 Upvotes

r/DevOpsLinks Jun 07 '26

Kubernetes How to build zero-trust networking with Cilium

Thumbnail medium.com
5 Upvotes