Join us

ContentUpdates and recent posts about Argo CD..
Link
@faun shared a link, 10 months, 2 weeks ago
FAUN.dev()

I've been using Talos Linux for Kubernetes, and I'll never look back

Talos Linux—an OS stripped down to the essentials and locked tighter than a production firewall—now boots cleanly as a VM onProxmox, playing nice with fullKVM/QEMUsupport. No shell, read-only filesystem, all wired forKubernetesviatalosctl. System shift:Devs are tossing old-school VM stacks for bare.. read more  

I've been using Talos Linux for Kubernetes, and I'll never look back
Link
@faun shared a link, 10 months, 2 weeks ago
FAUN.dev()

Retiring Docker Content Trust

Docker’s sunsettingDocker Content Trust (DCT)in 2025, starting withDocker Official Images. Not many used it, andNotary v1is toast. So they’re moving to modern signing tools likeSigstoreandNotation. Migration guides are on the way. What’s really happening:The container world’s ditching old trustboxe.. read more  

Link
@faun shared a link, 10 months, 2 weeks ago
FAUN.dev()

Understanding Kubernetes Commands and Arguments

Kubernetes lets you override a container’sCMDandENTRYPOINTwith thecommandandargsfields in your Pod spec. But don’t expect to change them after the Pod’s spun up—this isn’t Docker. No runtime flags here... read more  

Link
@faun shared a link, 10 months, 2 weeks ago
FAUN.dev()

Kubernetes v1.34 Sneak Peek

Kubernetes v1.34 lands in August 2025. It bringsDynamic Resource Allocation (DRA)to stable—structured resource requests, CEL filtering, and support for GPUs and custom gear. Built on new API types. Finally. Kubelet and API Server tracinglevel up with OpenTelemetry. Stable's the goal. Per-HPA autos.. read more  

Link
@faun shared a link, 10 months, 2 weeks ago
FAUN.dev()

How Freshworks optimized server provisioning using Karpenter

Freshworks optimized AWS EKS with Karpenter to handle diverse instance types, reduce costs, and achieve seamless node provisioning, disruptions, and terminations with minimal impact to service availability and resource utilization... read more  

Story ManageEngine Team
@shallin02 shared a post, 10 months, 2 weeks ago
Content Writer, ManageEngine Applications Manager

Container monitoring demystified: Real challenges and what actually works

Applications Manager

Discover the real challenges of container monitoring from ephemeral workloads to hybrid cloud complexity and learn practical solutions using tools like Prometheus, OpenTelemetry, and Applications Manager.

Story
@laura_garcia shared a post, 10 months, 2 weeks ago
Software Developer, RELIANOID

🌐 DDoS in 2025: Bigger, Smarter, and More Dangerous

DDoS attacks in 2025 are more frequent, complex, and accessible than ever—some reaching beyond 3 Tbps. From AI-driven traffic patterns to IoT botnets and multi-vector campaigns, the threat is real. Critical infrastructure, cloud APIs, and even elections are under fire. 🔐 At RELIANOID, we fight back ..

Blog DDoS Trends RELIANOID
Story ManageEngine Team
@shallin02 shared a post, 10 months, 2 weeks ago
Content Writer, ManageEngine Applications Manager

Is your docker setup actually performing well?

Applications Manager

Learn why Docker container monitoring is essential for performance, stability, and cost control. Discover must-watch metrics and explore tools like Applications Manager for real-time insights and smart alerts.

Story
@laura_garcia shared a post, 10 months, 2 weeks ago
Software Developer, RELIANOID

Digital Certificates 101

From SSL to code signing, email encryption to client authentication — digital certificates secure our digital world. They’re powered byPKIand issued by trustedCertificate Authorities, forming a chain of trust browsers and systems rely on every day. Want to explore the types (DV, OV, EV, Wildcard, SA..

Story ManageEngine Team
@arshadmas shared a post, 10 months, 2 weeks ago
Product Marketer, manageengine

Challenges in real user monitoring (RUM) and how to overcome them

Applications Manager

Real user monitoring (RUM) plays a crucial role in understanding how users truly experience your website or application. By capturing actual interaction data, RUM uncovers performance bottlenecks and usability issues that might otherwise go unnoticed. But like any monitoring approach, RUM comes with..

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.