Join us

ContentUpdates and recent posts about Argo CD..
Link
@devopslinks shared a link, 1 month, 1 week ago
FAUN.dev()

Moltbot Personal Assistant Goes Viral, And So Do Your Secrets

Moltbot, the self-hosted AI agent with native hooks for Slack, Telegram, and WhatsApp, exploded from 50-ish to over 3,000 GitHub forks a day after going viral on Jan 24, 2026. It's built around a file-backed workspace and automates everything from code deploys to cloud orchestration. Cool? Definitel.. read more  

Moltbot Personal Assistant Goes Viral, And So Do Your Secrets
Link
@devopslinks shared a link, 1 month, 1 week ago
FAUN.dev()

Supply-chain risk of agentic AI - infecting infrastructures via skill worms

AI assistants with shell, network, or filesystem "skills" don't just help, they expose. These hooks can run commands before any human checks the model’s output. That means a bigger attack surface. More room for lateral movement. Easier persistence. In setups where tools like Claude Code run often, i.. read more  

Link
@devopslinks shared a link, 1 month, 1 week ago
FAUN.dev()

CodeBreach: Supply Chain Vuln & AWS CodeBuild Misconfig

Wiz Research dropped details onCodeBreach, a serious flaw that cracked open AWS SDK GitHub repos, yes, including the popular JavaScript one. The root problem? Leakyregex filtersin CodeBuild pipelines. They missed anchors, so attackers slipped in rogue pull requests, dodged build rules, and stole hig.. read more  

CodeBreach: Supply Chain Vuln & AWS CodeBuild Misconfig
Link
@devopslinks shared a link, 1 month, 1 week ago
FAUN.dev()

I Cannot SSH Into My Server Anymore (And That’s Fine)

A dev ditched their $100/month VPS for a clean, automated CoreOS setup. No SSH. No clicking around. JustIgnition,Podman Quadlets, andTerraformdoing the heavy lifting. It boots from YAML, spins up containers with systemd, and keeps itself fresh withPodman auto-updates, zero-touch, straight from the r.. read more  

I Cannot SSH Into My Server Anymore (And That’s Fine)
Link
@devopslinks shared a link, 1 month, 1 week ago
FAUN.dev()

Nanoservices: Why Serverless Got Architecture Right

A fresh take onAWS Lambdaand serverless: thinknanoservices- tiny, isolated functions instead of chunky microservices. No shared state or shared runtime but clean separation, lean logic, and fewer ways to screw up scaling. Where microservices can spiral into spaghetti, nanoservices stay crisp. Each f.. read more  

Nanoservices: Why Serverless Got Architecture Right
 Activity
News FAUN.dev() Team Trending
@kala shared an update, 1 month, 1 week ago
FAUN.dev()

OpenClaw - Former Moltbot, Former Clawdbot - Went Viral Overnight. Then Security Reality Hit.

OpenClaw

OpenClaw, an open-source AI assistant platform, has been launched, evolving from Clawdbot and Moltbot. It features new plugins, enhanced security, and support for new models, while addressing a major security vulnerability. The platform emphasizes community involvement and invites contributions for its development.

OpenClaw - Former Moltbot, Former Clawdbot - Went Viral Overnight. Then Security Reality Hit.
 Activity
@kala added a new tool OpenClaw , 1 month, 1 week ago.
News FAUN.dev() Team
@kaptain shared an update, 1 month, 1 week ago
FAUN.dev()

Cluster API v1.12 Released: In-Place Updates and Chained Upgrades

Kubernetes

Cluster API v1.12 introduces in-place updates and chained upgrades to enhance Kubernetes cluster management. In-place updates modify existing machines without deletion, while chained upgrades streamline multi-version upgrades. The release also includes improvements to immutable rollouts and various bug fixes.

Cluster API v1.12 Released: In-Place Updates and Chained Upgrades
Story
@laura_garcia shared a post, 1 month, 1 week ago
Software Developer, RELIANOID

Shield Your Core 🛡️

Cybersec Asia is coming to Bangkok on February 4–5, 2026 — the key APAC event for cybersecurity, cloud, and data protection. 🌏 Bringing together global and regional leaders to tackle evolving threats and unlock new opportunities across CLMVT & APAC. 🤝 Meet RELIANOID and discover how we deliver secur..

cybersec asia 2026 RELIANOID
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.