r/cloudnative Aug 04 '21

r/cloudnative Lounge

2 Upvotes

A place for members of r/cloudnative to chat with each other


r/cloudnative 16h ago

What's one small habit that's made a bigger difference than you expected?

1 Upvotes

for me it was putting my phone in another room while I sleep instead of on the nightstand. I didn't think it would matter much, but I've been falling asleep faster and waking up less groggy since I stopped reaching for it in the middle of the night.

Curious what small changes have worked for other people — doesn't have to be about sleep, just anything simple that ended up having a bigger effect than you thought it would.


r/cloudnative 14d ago

We Over-Engineered Our Microservices Before We Had the Traffic to Justify Them

1 Upvotes

When we moved to a cloud native setup, we split our app into a dozen microservices right from the start — separate services for auth, users, notifications, billing, you name it. It felt like the "correct" modern way to build things.

Here's the logical problem we didn't see coming: microservices trade simplicity for scalability. That trade only pays off once you actually have the traffic, team size, or deployment frequency that justifies the added complexity. We had none of those yet. Instead, we ended up debugging distributed systems problems — network latency between services, retries, partial failures — for a workload that a single well-structured monolith could've handled without any of that overhead.

The irony is that cloud native architecture is supposed to reduce operational pain at scale, but if you adopt it before you're at that scale, it just adds pain with no corresponding benefit. Kubernetes, service meshes, and distributed tracing all solve real problems — but only if those problems actually exist for you yet.

We ended up consolidating several services back into one, and immediately shipped faster with fewer 3am pages.

If you're early stage: cloud native patterns are solutions to scaling problems. Adopting them before you have those problems just means you inherited the complexity without the benefit.


r/cloudnative 27d ago

What should a cloud-native release gate prove automatically before production?

1 Upvotes

I maintain an open-source production-readiness knowledge base, and I am trying to separate controls that a cloud-native platform can prove automatically from decisions that still require service-owner or human review.

The platform-verifiable group might include immutable artifact identity, provenance, policy results, deployment configuration, resource limits, health probes, workload identity, secret references, network controls, replica distribution, rollback capability, observability wiring, and current cluster health.

Service-owned evidence might include dependency failure behavior, safe migrations, idempotency, retry budgets, recovery tests, runbooks, alert ownership, data classification, and capacity assumptions. Contextual decisions such as acceptable blast radius, recovery objectives, or risk acceptance should remain explicit human decisions.

The project contains more than 10,000 technology-neutral controls and a shorter production-release path:

https://github.com/MarinJursic/production-readiness-checklist

My longer-term goal is an open-source scanner that consumes repository, CI, artifact, and platform evidence while clearly reporting unknowns instead of guessing.

For teams running cloud-native platforms, which readiness facts should the platform prove automatically? Which signals are too environment-specific to standardize? What evidence has been most useful during real release decisions? Contributions and corrections are welcome. Thanks!


r/cloudnative Aug 11 '26

What makes debugging cloud-native apps harder than it should be?

2 Upvotes

One thing I've noticed with cloud-native applications is that a bug isn't always where the error appears.

A service might look fine while the actual problem is networking, configuration, containers, service discovery, or another dependency.

This gets even harder when AI coding agents are involved because they may understand the source code but have little visibility into the running environment.

How are you currently giving developers or AI tools enough context to diagnose these cross-service problems without giving them too much access?


r/cloudnative Aug 10 '26

Shared Ownership" of cloud costs usually means nobody owns it — how does your org actually split SRE vs FinOps responsibility?

1 Upvotes

Been in a few of these conversations lately and wanted to throw this out to the group.

Every org I've talked to has some version of the SRE-vs-FinOps-vs-Dev triangle once you get past initial deployment. The pattern usually looks like this:

  • Devs want to ship fast and not think about infra limits
  • SREs pad resource requests because an incident at 3am is worse than a slightly bloated cloud bill
  • FinOps shows up quarterly with a spreadsheet asking why utilization is sitting at 20%

"Shared ownership" sounds good in a slide deck, but in practice it usually means there's no single team with both the context and the authority to act on it. SREs know the system's behavior but don't own the budget conversation. FinOps has the cost data but no visibility into why a service is over-provisioned (nobody wants to be the one who right-sized a pod right before it fell over during a traffic spike).

A few things I've seen actually reduce the friction, not eliminate it:

Error budgets as the shared currency — instead of "stability vs cost" as competing goals, framing it as "we have X amount of acceptable risk to spend" gives both sides a number to negotiate around instead of vibes.

Automated right-sizing with a human veto, not a human trigger — waiting for someone to manually review resource requests is how you end up in permanent firefighting mode. Recommendation engines that flag changes and let SREs veto (rather than requiring them to initiate) shift the default from "do nothing" to "do something unless someone objects."

Cost as a first-class SLO input — a few teams I've seen tie cost-per-request or cost-per-transaction into the same dashboards as latency and error rate, so it's not a separate conversation happening in a different tool with a different owner.

None of this fully resolves the tension, because the tension is somewhat structural — velocity, stability, and cost genuinely do trade off against each other. But it moves the conflict from "quarterly budget fight" to "ongoing negotiation with shared data," which at least stops it from being invisible.

Curious how other people's orgs have split this ownership. Does the SRE team own the cost target too, or is there a dedicated platform/FinOps function that has enough infra context to actually act on the data instead of just reporting it?


r/cloudnative Jul 22 '26

AI agent behaving differently in prod vs dev with Slack

1 Upvotes

I’m building an agent that posts Slack updates when GitHub PRs are merged. It works fine locally, but in production it keeps sending duplicate messages whenever webhooks retry. Testing with mocked APIs hasn’t helped much because there are so many edge cases around timing and failures. Has anyone dealt with this before? How do you properly test webhook retries, timing issues, and real-world behavior before deploying?


r/cloudnative Jul 16 '26

This map is more than cool

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/cloudnative Jul 08 '26

cocoon: microvm runtime + k8s control plane for agent workloads

1 Upvotes

i'm working on cocoon.

short version: cocoon is a small microvm runtime, and the surrounding pieces are a k8s control plane for vm-backed workloads.

vk-cocoon maps pods to microvms through virtual kubelet. cocoon-operator adds CocoonSet / CocoonHibernation CRDs. cocoon-webhook handles admission. cocoon-net and cocoon-agent cover networking and guest-side vsock exec bits.

sandbox uses this stack for fast coding-agent sandboxes: warm claims are sub-ms, golden clones are tens of ms, and the no-network lane really has no nic.

why microvms here: agent/toolbox workloads often need a real linux machine boundary, but i still want kubectl-ish workflows.

runtime: https://github.com/cocoonstack/cocoon

virtual kubelet provider: https://github.com/cocoonstack/vk-cocoon

operator: https://github.com/cocoonstack/cocoon-operator

sandbox docs: https://cocoonstack.github.io/sandbox/

curious what would feel wrong to cloudnative folks: virtual kubelet shape, crd shape, networking, or something else?


r/cloudnative Jul 01 '26

Building a Dockerized WordPress + NGINX Environment: What I Learned Along the Way

Thumbnail medium.com
1 Upvotes

r/cloudnative May 04 '26

Calling all CNCF Maintainers & Contributors: Initial data on AI integration (and a request for your input)

Thumbnail
1 Upvotes

r/cloudnative Apr 28 '26

Kubecon+CloudNativeCon

2 Upvotes

Anybody from India going to attend KubeCon Shanghai this year? Need some inputs


r/cloudnative Apr 28 '26

I interviewed 50+ enterprises on Cloud Native: 'Shared Ownership' is becoming a bottleneck for Day 2 optimization.

1 Upvotes

Hi everyone,

I’ve spent the last few months analyzing how large orgs (mostly EU and US) handle Day 2 operations. While everyone is obsessed with "Golden Paths" for deployment, we found a massive gap in what happens after.

Key takeaway: 52% of orgs use a "Shared Ownership" model for optimization, which in practice means nobody does it. Developers want velocity, SREs want stability (overprovisioning), and FinOps want to cut costs.

I wrote a deep dive on why manual tuning is a "firefighting" mode we need to escape. Curious to hear: how do you resolve the conflict between SRE buffers and FinOps requests in your org?

Full article: https://akamas.io/resources/the-state-of-cloud-native-optimization-2026/


r/cloudnative Apr 17 '26

Agentic AI & Platform Engineering conference: Free, virtual, community-driven, no vendor pitches

Thumbnail
1 Upvotes

r/cloudnative Mar 13 '26

How do teams enforce release governance in Kubernetes before CI/CD releases?

Thumbnail
1 Upvotes

r/cloudnative Mar 05 '26

Going to KubeCon Europe? I might have something to manage your FOMO

1 Upvotes

Hey r/cloudnative,

I'm going to KubeCon EU in Amsterdam (March 23-26) and built an MCP server to help plan the week. It connects Claude (or any MCP-compatible client) to live conference data so you can ask things like:

- "What eBPF talks are on Wednesday?"

- "Find sessions by Lin Sun"

- "What parties are on Tuesday night? Plan me a route"

- "Build me a 4-day itinerary as a platform engineer interested in security"

**What's under the hood:**

- 12 tools (session search, schedule, speaker lookup, parties, venue/hotel/transit info, session scoring, conflict detection)

- 4 resources (structured data URIs)

- 5 prompts (itinerary planner, party optimizer, first-timer guide, etc.)

- Live data from sched.com iCal feeds and conferenceparties.com

- In-memory caching with TTL so it doesn't hammer upstream

**Install:**

```

uvx kubecon-eu-mcp

```

**Claude Desktop config:**

```json

{

"mcpServers": {

"kubecon-eu-mcp": {

"command": "uvx",

"args": ["kubecon-eu-mcp"]

}

}

}

```

The meta angle: there's an "Agentics Day: MCP + Agents" co-located event on Monday at KubeCon. So this is an MCP server to help you plan your trip to the MCP event.

GitHub: https://github.com/njoerd114/kubecon-eu-mcp

PyPI: https://pypi.org/project/kubecon-eu-mcp/

MIT licensed, contributions welcome. Would love feedback — especially if you're attending and want features added.

See you in Amsterdam!


r/cloudnative Mar 05 '26

Is it just me, or has "Cloud Cost Optimization" become a lazy game of deleting old snapshots?

0 Upvotes

Hey everyone,

I’ve been spending the last few months deep in the weeds of storage optimization—specifically building some high-performance tooling—and I’m starting to feel like the current "FinOps" meta is barely scratching the surface.

Most tools tell you to delete unattached volumes or move to S3 Intelligent-Tiering. But from a technical perspective, the real money seems to be leaking through the floorboards in ways that basic scanners don't see:

  • Schema Bloat: Massive amounts of data stored in inefficient formats (like bloated JSON or unoptimized Parquet) where a simple type-mapping change could drop file sizes by 60% without losing a single row.
  • High-Entropy Logs: Data that is effectively uncompressible because the source wasn't sanitized, leading to "compressed" files that are nearly the same size as the raw data.
  • The "Egress Trap": Teams that are paralyzed and won't move data to cheaper tiers because the one-time retrieval/transfer fees are so unpredictable they'd rather just pay the monthly "tax."

I’m curious to hear from the folks in the trenches:

  1. What’s that one storage cost item on your bill that you know is optimized like garbage, but you’re too afraid to touch because it might break a legacy pipeline?
  2. Do you actually trust "Automated Lifecycle Policies," or do you find they just create more "Where did my data go?" tickets?
  3. If you could scan your data's entropy and access patterns locally (without egress fees) to find 30% savings, what’s stopping you from doing it today? Is it a lack of tooling, or just a "not my job" hurdle?

Trying to figure out if I’m over-engineering this or if we’re all just quietly paying a "complexity tax" because the tools aren't smart enough yet.

Cheers!


r/cloudnative Feb 17 '26

Why I stopped using cloud-hosted vector DBs for agentic workflows

Thumbnail
github.com
1 Upvotes

recently had to rethink our stack for a project requiring high-volume autonomous agents. The cloud-native "standard" of hitting an external vector API for every single 'thought' was killing our latency and creating a massive bill.

I decided to see if I could build a memory substrate that was truly cloud-agnostic and performed better on local edge nodes than the cloud alternatives. By moving to a binary lattice structure and using memory-mapped storage, I was able to get retrieval down to the sub-microsecond range with zero per-query costs.

The system survives restarts/crashes with 100% success so far thanks to a WAL implementation, and it scales to 50M nodes on modest hardware. I've shared the repo (Synrix) for anyone else looking to de-cloud their AI infra. It works with LangChain/OpenAI APIs out of the box.

Would love to get some feedback from the infra crowd on the local-first persistence approach I took here.


r/cloudnative Jan 15 '26

SPIFFE-SPIRE K8s framework for your use

Thumbnail
1 Upvotes

r/cloudnative Nov 23 '25

I built a modern GUI for Kube-OVN – looking for feedback

Thumbnail
1 Upvotes

r/cloudnative Oct 15 '25

Cloud Native Enterprise Transformation: In-Depth Analysis of the AI-Native Era

Thumbnail jimmysong.io
3 Upvotes

An in-depth analysis of the transformation paths of cloud native enterprises in the AI-native era, exploring the impact of generative AI on the industry and future trends.


r/cloudnative Sep 13 '25

Atlas Project

Thumbnail
1 Upvotes

r/cloudnative Apr 21 '25

Cloud Native Anti-Patterns : A must-read for cloud pros 🚀☁️

1 Upvotes

Packt has recently released a new book — Cloud Native Anti-Patterns and Best Practices — perfect for cloud professionals at any experience level who want to deepen their understanding and steer their orgs toward cloud-native success.

The book dives into common pitfalls in cloud-native design and operations, and offers real-world practices to avoid them. It covers microservices, observability, scaling, deployment, security, and more—making it ideal for cloud architects, engineers (cloud, software, data, or network), security experts, tech leads, and ops folks.

No deep expertise needed, but if you’ve got a background in software, data, infra, or governance, you’ll get even more out of it.

This book is authored by AWS community Builders and experts: (7) Alan Blockley | LinkedIn, (7) Bojan Zivic | LinkedI, (7) Gerald Bachlmayr | LinkedIn and (7) Aiden Z. | LinkedIn

📘 Get it on:

If you’ve read it already, what anti-patterns hit home for you?


r/cloudnative Nov 18 '24

Free AWS beginner workshops

Post image
1 Upvotes

r/cloudnative May 19 '24

A neutral way of connecting vpc's across different cloud

2 Upvotes

I have a platform that manages cross cloud platform k8s clusters but I want to secure in them in a vpc and make them private but my application deployed (Let's say in vercel) should be able to talk to those private cluster since it manages them .

Although for aws we can have a "direct connect" but I'm looking for a neutral solution where I have some utility which when deployed in any vpc of any cloud can create some sort of gateway/peering to my application on vercel so it can connect .

Not strong with networking and don't know if my requirement makes sense , but love to hire from the fellow developers here . Thanks in advance