SShortSingh.
Back to feed

GitOps Lab Uses ArgoCD and Argo Rollouts for Staged Canary Deploys on Amazon EKS

0
·1 views

A hands-on GitOps project demonstrates progressive delivery of a Java Spring Boot application on Amazon EKS using ArgoCD, Argo Rollouts, and Argo Workflows. The architecture splits workloads across two physically isolated NodePools, referred to as shards, each receiving canary rollouts independently. A new image build is triggered by a git push, processed via Kaniko and published to Amazon ECR, after which ArgoCD detects the change and begins the staged rollout. Shard-1 receives the update first with a canary promotion, while Shard-2 awaits either manual approval or an optional automated decision driven by a CloudWatch alarm. Infrastructure is managed through Terraform split into two independent state layers — one for base AWS resources and one for Kubernetes platform components — to reduce blast radius during deployments.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Developer Builds Lightweight Go Gateway to Centralize LLM Provider Setup

A developer created Go-Ai, a small open-source HTTP gateway written in Go, to eliminate repetitive LLM provider configuration across multiple projects. The tool acts as a single proxy layer between application backends and AI providers like OpenAI, handling credentials, model name aliases, and streaming without requiring each app to manage those details independently. The project was motivated by the recurring friction of managing provider keys, model slugs, and environment-specific availability every time a new AI feature was tested. Go-Ai is intentionally narrow in scope and is not designed to replace broader frameworks like LiteLLM or LangChain, which the author acknowledges serve different needs. The gateway is best suited for developers running multiple small apps who want a self-hosted, minimal service they can trace from request to response.

0
ProgrammingDEV Community ·

Rewriting Tool Descriptions Boosted AI Agent Accuracy from 34% to 100% for $4

An open-source project called Toolmetry found that vague or outdated tool descriptions — not the AI model itself — were causing agents to fail tasks at high rates. By rewriting only the text descriptions that tell agents what each tool does and how to use it, SQLite task success jumped from 34% to 100%, with the entire experiment costing just $4 in API calls. Researchers identified three root causes: overlapping tool descriptions causing wrong tool selection, implied but unnecessary prerequisite steps wasting tokens, and deprecated parameter references leading to confident but incorrect calls. For example, a git server's success rate rose from 75% to 96.7% simply by updating parameter names in its descriptions to match the current API. The findings suggest that tool descriptions function as a contract between an agent and external systems, and ambiguity in that contract reliably produces failures regardless of model quality.

0
ProgrammingDEV Community ·

Natural Language Is a Data Interface, Not a Substitute for Semantic Modeling

A two-part technical series from DEV Community explores how an Enterprise Data Discovery Assistant enables business users to query a Customer 360 domain of over 100 million records without knowing SQL or database schemas. The system relies on Snowflake semantic views to make analytical decisions explicit, covering metrics, relationships, time semantics, and access rules, rather than letting a language model guess from raw table names. Before any query runs, the assistant performs a mandatory data-contract check to verify freshness, quality, and trustworthiness of the target data product. Depending on the contract result, the system either proceeds normally or attaches a warning if the data is stale, degraded, or failed. The core finding is that natural language broadens access to well-modeled data but does not replace the need for rigorous data modeling and governance infrastructure.

0
ProgrammingDEV Community ·

CS Student Builds Three Projects That Each Forced Him to Rethink Core Assumptions

A computer engineering student and developer built three distinct software projects this year, each presenting unexpected design challenges. The first replaced a truck-weighing system at a plant, requiring a serial-port data stream architecture with FastAPI and WebSockets, plus a strict PostgreSQL state machine to prevent edits to completed billing records. The second, a campus social app called Epa, tackled privacy-sensitive features like opt-in expiring location sharing and server-controlled ephemeral media rather than client-side deletion. The third, a PWA music player called BeatWave, exposed the complexity of true offline-first design — managing cache conflicts, interrupted downloads, and partial reconnections via IndexedDB and service workers. Across all three projects, the developer found that the hardest problems were not the obvious technical ones, but the hidden assumptions about data flow, user permissions, and connectivity states.