Join us

ContentUpdates and recent posts about Argo CD..
Link
@varbear shared a link, 5 days, 9 hours ago
FAUN.dev()

A new chapter for the Nix language, courtesy of WebAssembly

Determinate Nix introduces experimental WebAssembly host calls. It lets Nix invoke Wasm modules, pass and return complex Nix values, and support Rust, C++, and Zig toolchains. It runs on Wasmtime/Cranelift and slashes runtime and memory: Fibonacci test 0.33s vs 79.33s, 30MB vs 4.5GB. Per-call instan.. read more  

A new chapter for the Nix language, courtesy of WebAssembly
Link
@varbear shared a link, 5 days, 9 hours ago
FAUN.dev()

Cracking the Python Monorepo

Outlines a Python monorepo setup that pairsuvworkspaces withDaggerandBuildKitcaching. Builds container stages programmatically. Keeps things cache-friendly and predictable. Parsespyproject.tomland extracts the workspace graph. Copies required local packages into intermediate stages. Installs them in.. read more  

Link
@kaptain shared a link, 5 days, 9 hours ago
FAUN.dev()

Running Agents on Kubernetes with Agent Sandbox

Agent Sandbox unveils the Sandbox CRD to map long-lived, singleton AI agents onto Kubernetes. It adds stable identity and lifecycle primitives. It supports runtimes like gVisor and Kata Containers. It enables zero-scale resume. It includes SandboxWarmPool with SandboxClaim and SandboxTemplate to kil.. read more  

Link
@kaptain shared a link, 5 days, 9 hours ago
FAUN.dev()

RAM is getting expensive, so squeeze the most from it

The Register contrastszramandzswap. It flags a patch that claims up to 50% fasterzramops. It notes Fedora enableszramby default. It details thatzramprovides compressed in‑RAM swap (LZ4).zswapcompresses pages before writing to disk and requires on‑disk swap... read more  

RAM is getting expensive, so squeeze the most from it
Link
@kaptain shared a link, 5 days, 9 hours ago
FAUN.dev()

Securing Production Debugging in Kubernetes

The post prescribes an on-demand SSH gateway pod. It usesshort-lived, identity-bound credentialsandKubernetes RBACto grant scoped, auditable debug sessions. It recommends anaccess brokerthat binds Roles to groups, issues ephemeral certs and OpenSSH user certificates, rotates CAs, enforces command-le.. read more  

Link
@kaptain shared a link, 5 days, 9 hours ago
FAUN.dev()

The Invisible Rewrite: Modernizing the Image Promoter

SIG Release rewrote theimage promotercore. It cut 20% of the code. It added apipeline engine,cosignsigning, andSLSAattestations. Signing now sits separate fromsignature replication. Registry reads run in parallel - plan time dropped ~20m → ~2m. Per-request timeouts, retries, and HTTP connection reus.. read more  

Link
@kaptain shared a link, 5 days, 9 hours ago
FAUN.dev()

Kubernetes v1.36 - Sneak Peek

Kubernetes v1.36 (Apr 22, 2026) enablesHPAScaleToZeroby default. That lets theHPAuseminReplicas: 0and read only controller-owned pod metrics. The release swaps long-lived image-pull secrets forephemeral KSA tokens. It deprecatesIPVS, retiresIngress NGINX, and aligns withcontainerd 2.x. The release f.. read more  

Link
@kala shared a link, 5 days, 9 hours ago
FAUN.dev()

Building AI Teams with Sandboxes & Agent

Docker Agentruns teams of specialized AI agents. The agents split work: design, code, test, fix. Models and toolsets are configurable. Docker Sandboxesisolate each agent in a per-workspacemicroVM. The sandbox mounts the host project path, strips host env vars, and limits network access. Tooling move.. read more  

Building AI Teams with Sandboxes & Agent
Link
@kala shared a link, 5 days, 9 hours ago
FAUN.dev()

OpenClaw Tutorial: AI Stock Agent with Exa and Milvus

An autonomous market agent ships. OpenClaw handles orchestration. Exa returns structured, semantic web results. Milvus (or Zilliz Cloud) stores vectorized trade memory. A 30‑minute Heartbeat keeps it running. Custom Skills load on demand. Recalls query 1536‑dim embeddings. Entire stack runs for abou.. read more  

OpenClaw Tutorial: AI Stock Agent with Exa and Milvus
Link
@kala shared a link, 5 days, 9 hours ago
FAUN.dev()

OpenClaw is a great movement, but dead product. what's next?

After talking to 50+ individuals experimenting with OpenClaw, it's clear that while many have tried it and even explored it for more than 3 days, only around 10% have attempted automating real actions. However, most struggle to maintain these automations at a production level due to challenges with .. read more  

At its core, Argo CD treats Git as the single source of truth for application definitions. You declare the desired state of your Kubernetes applications in Git (manifests, Helm charts, Kustomize overlays), and Argo CD continuously compares that desired state with what is actually running in the cluster. When drift is detected, it can alert you or automatically reconcile the cluster back to the Git-defined state.

Argo CD runs inside Kubernetes and provides:

- Declarative application management
- Automated or manual sync from Git to cluster
- Continuous drift detection and health assessment
- Rollbacks by reverting Git commits
- Fine-grained RBAC and multi-cluster support

It integrates natively with common Kubernetes configuration formats:

- Plain YAML
- Helm
- Kustomize
- Jsonnet

Operationally, Argo CD exposes both a web UI and CLI, making it easy to visualize application state, deployment history, diffs, and sync status. It is commonly used in platform engineering and SRE teams to standardize deployments, reduce configuration drift, and enforce auditability.

Argo CD is part of the Argo Project, which is hosted by the Cloud Native Computing Foundation (CNCF), and is widely adopted in production Kubernetes environments ranging from startups to large enterprises.