Join us

ContentUpdates and recent posts about Rust..
Link
@faun shared a link, 1 year ago
FAUN.dev()

Monolith-First - are you sure?

Modular monolithsrisk turning into messy "big balls of mud" when developers overdo shortcuts or tangle the code. Gomodular-firstand be ready to spot stealthy dependencies lurking in the corners. Skip the quick fixes—they're overrated... read more  

Monolith-First - are you sure?
Link
@faun shared a link, 1 year ago
FAUN.dev()

Woodpecker: Open-source red teaming for AI, Kubernetes, APIs

Woodpeckertakes on the dirty work of red teaming for AI, Kubernetes, and APIs. It tackles over half of the OWASP Top 10 threats without breaking a sweat. Find it free on GitHub, spreading top-notch security testing like free candy... read more  

Woodpecker: Open-source red teaming for AI, Kubernetes, APIs
Link
@faun shared a link, 1 year ago
FAUN.dev()

Kubernetes may seem complex, but once broken down, it operates like a well-orchestrated system…

Kubernetes' Master Nodeis the cluster's brain. TheAPI Server? Think of it as the front door, shrewdly dispatching developer requests like a bouncer with a clipboard... read more  

Kubernetes may seem complex, but once broken down, it operates like a well-orchestrated system…
Link
@faun shared a link, 1 year ago
FAUN.dev()

Why Kubernetes 1.33 Is a Turning Point for MLOps — and Platform Engineering

Kubernetes v1.33crushes it for AI/ML workloads with slickDynamic Resource Allocation.Your GPU headaches? Gone. It's nimble, modular, and ready to scale. Plus, with topology-aware routing now in the spotlight, Kubernetes slashes network latency and trims cloud expenses by favoring the nearest options.. read more  

Why Kubernetes 1.33 Is a Turning Point for MLOps — and Platform Engineering
Link
@faun shared a link, 1 year ago
FAUN.dev()

Accelerating application development with the Amazon EKS MCP server

TheEKS MCP serverhands AI code assistants, likeQ Developer CLI, the keys to a streamlined Kubernetes kingdom. App development? Now lightning fast. WithLLMstapping into real-time context, AI flexes its muscles in the wild world of Kubernetes ops and troubleshooting... read more  

Accelerating application development with the Amazon EKS MCP server
Link
@faun shared a link, 1 year ago
FAUN.dev()

Upgrading ECK Operator: A Side-by-Side Kubernetes Operator Upgrade Approach

Abhishek Munagekar from the Search Infrastructure Team at Mercari manages several Elasticsearch clusters on Kubernetes using the Elastic Cloud on Kubernetes (ECK) Operator. The team embarked on an upgrade project to leverage advancements in newer ECK operator versions. By implementing a custom side-.. read more  

Link
@faun shared a link, 1 year ago
FAUN.dev()

High Available Mosquitto MQTT on Kubernetes

Running a Kubernetes-nativeMQTT brokerwith Eclipse Mosquitto cuts downtime to a mere5 seconds. Compare that to the usual 5-minute snooze. This feat involves Traefik sorcery and a custom failover rig. Uninterrupted message flow? Check. Real-time state? Handled with message bridges that practically da.. read more  

High Available Mosquitto MQTT on Kubernetes
Link
@faun shared a link, 1 year ago
FAUN.dev()

10 Open Source Kubernetes Security Tools 2025

A wild440%spike in Kubernetes vulnerabilities over five years calls for open-source security tools that actually get the job done. Still, half of the organizations feel like they're playing catch-up trying to lock it down. Enter tools likeFalcoandIstio. Falco sniffs out runtime anomalies while Istio.. read more  

10 Open Source Kubernetes Security Tools 2025
Link
@faun shared a link, 1 year ago
FAUN.dev()

Secrets Management in CI/CD Pipeline: Best Practices & Tools

Hardcoding secrets is a ticking time bomb. Instead, reach for centralized tools like HashiCorp Vault; they'll guard your secrets like a vault should. Automate secret rotation so your credentials don't gather dust, and log everything to keep tabs on who does what. Devtron makes it a breeze with its K.. read more  

Link
@faun shared a link, 1 year ago
FAUN.dev()

Kubernetes CRD Abstraction Risks in kro

Orca Research Pod discovered two bugs in kro that could allow an attacker to introduce a malicious CustomResourceDefinition (CRD). Kro is an open-source project enabling custom Kubernetes APIs using ResourceGraphDefinition resources. These vulnerabilities could lead to a confused deputy scenario whe.. read more  

Rust is a systems programming language originally developed at Mozilla and now stewarded by the Rust Foundation. It is designed to enable developers to build fast, reliable, and secure software by preventing entire classes of bugs at compile time. Rust achieves this through its ownership model, which enforces strict rules around memory access, lifetimes, and mutability, eliminating common issues such as null pointer dereferences, use-after-free errors, and data races.

Unlike traditional systems languages such as C and C++, Rust provides strong safety guarantees while maintaining low-level control and predictable performance. Its zero-cost abstractions allow developers to write expressive, high-level code that compiles down to efficient machine instructions. Rust’s type system and concurrency model make it especially well suited for multithreaded and security-critical software.

Rust is widely used across domains including operating systems, browsers, networking infrastructure, cryptography, blockchain, and embedded systems. It has also gained strong adoption in large-scale production environments due to its excellent tooling, package ecosystem (Cargo and crates.io), and emphasis on long-term maintainability. Today, Rust is recognized as a leading language for building safe, high-performance infrastructure software.