From 14db0d608c5d8141f845114264bee25de5995a59 Mon Sep 17 00:00:00 2001 From: "Michal.Wrobel" Date: Wed, 18 Dec 2024 10:56:11 +0000 Subject: [PATCH] docs/userguide/argocd.md aktualisiert --- docs/userguide/argocd.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/userguide/argocd.md b/docs/userguide/argocd.md index 4010539..e8f86be 100644 --- a/docs/userguide/argocd.md +++ b/docs/userguide/argocd.md @@ -1,2 +1,14 @@ -quick paragraph about argocd -just the specifics what we maybe do differently \ No newline at end of file +[Argo CD](https://argoproj.github.io/cd/) is an open-source **continuous delivery platform** that automates the deployment of applications to Kubernetes clusters. It ensures consistent deployments by minimizing human errors and increasing efficiency through **declarative** configuration management, using **Git repositories as the single source of truth** for defining application infrastructure states. + +## Main Features +**1. Declarative Configuration Management** +Argo CD uses declarative YAML or JSON files stored in Git repositories to manage application infrastructure. These files define the desired state, ensuring that applications are consistently deployed to Kubernetes clusters with every deployment. + +**2. Kubernetes-Native Integration** +Designed specifically for Kubernetes, Argo CD integrates seamlessly within the Kubernetes ecosystem. It leverages Kubernetes’ native capabilities for managing deployments and cluster resources, aligning with GitOps principles to handle changes automatically based on the declarative configurations in Git. + +**3. Self-Healing and Automatic Rollbacks** +Argo CD detects drift (when the actual state of a cluster deviates from the desired state) and automatically reconciles changes to restore the desired state. It also supports automatic rollbacks in the event of deployment failures, provided policies are defined in Git configurations. + +## References +https://argo-cd.readthedocs.io/en/stable/ \ No newline at end of file