Join us

ContentUpdates and recent posts about k3d..
 Activity
@environmentalbit3940 started using tool Kubernetes , 3 days, 16 hours ago.
 Activity
@environmentalbit3940 started using tool Grafana , 3 days, 16 hours ago.
 Activity
@environmentalbit3940 started using tool Go , 3 days, 16 hours ago.
 Activity
@environmentalbit3940 started using tool GNU/Linux , 3 days, 16 hours ago.
 Activity
@environmentalbit3940 started using tool GitLab CI/CD , 3 days, 16 hours ago.
 Activity
@environmentalbit3940 started using tool Ansible , 3 days, 16 hours ago.
Link
@devopslinks shared a link, 3 days, 16 hours ago
FAUN.dev()

Top 10 best practices for Amazon EMR Serverless

Amazon EMR Serverless allows users to run big data analytics frameworks without managing clusters, integrating with various AWS services for a comprehensive solution. The top 10 best practices for optimizing EMR Serverless workloads focus on performance, cost, and scalability, including consideratio.. read more  

Top 10 best practices for Amazon EMR Serverless
Link
@devopslinks shared a link, 3 days, 16 hours ago
FAUN.dev()

AWS RDS Cost Optimization Guide: Cut Database Costs in 2026

Amazon RDS costs are not fixed - they vary based on configuration and usage. Making informed configuration and governance decisions is key to optimizing costs. Graviton instances offer better price-performance for common databases, while storage costs can be reduced by decoupling performance from ca.. read more  

AWS RDS Cost Optimization Guide: Cut Database Costs in 2026
Link
@devopslinks shared a link, 3 days, 16 hours ago
FAUN.dev()

Introducing Agentic Observability in NGINX: Real-time MCP Traffic Monitoring

NGINX ships an open-sourceAgentic ObservabilityJS module. It parsesMCPtraffic and extracts tool names, error statuses, and client/server identities. The module uses nativeOpenTelemetryto export spans. A Docker Compose reference wires upOTel collector,Prometheus, andGrafanafor realtime throughput, la.. read more  

Introducing Agentic Observability in NGINX: Real-time MCP Traffic Monitoring
Link
@devopslinks shared a link, 3 days, 16 hours ago
FAUN.dev()

Building a Database on S3

This paper from 2008 proposes a shared-disk design over Amazon S3 for cloud-native databases, separating storage from compute. Clients write redo logs to Amazon SQS instead of directly to S3 to hide latency. The paper presents a blueprint for serverless databases before the term existed... read more  

k3d is an open-source utility designed to simplify running Kubernetes locally by wrapping K3s (Rancher’s lightweight Kubernetes distribution) inside Docker containers. Instead of creating virtual machines, k3d uses Docker as the execution layer, allowing developers to spin up multi-node Kubernetes clusters in seconds using minimal system resources.

k3d is especially popular for local development, CI pipelines, demos, and testing Kubernetes-native applications. It supports advanced setups such as multi-node clusters, load balancers, custom container registries, port mappings, and volume mounts, while remaining easy to tear down and recreate.

Because it uses K3s, k3d inherits a simplified control plane, bundled components, and reduced memory footprint compared to full Kubernetes distributions. This makes it ideal for developers who want a realistic Kubernetes environment without the overhead of tools like Minikube or full VM-based clusters.

k3d integrates cleanly with common Kubernetes workflows and tools such as kubectl, Helm, Skaffold, and Argo CD. It is frequently used to validate manifests, test Helm charts, and simulate production-like environments locally before deploying to cloud or on-prem clusters.