From be0012bfef56388952a64a3aa4450cd0b6a59f5b Mon Sep 17 00:00:00 2001 From: MikeGarciaAGM Date: Sun, 31 May 2026 08:57:59 -0500 Subject: [PATCH] feat(blog): add post from issue #264 --- posts.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/posts.json b/posts.json index 9ad7a6f..a4545fb 100644 --- a/posts.json +++ b/posts.json @@ -571,5 +571,17 @@ "tags": [], "date": "2026-04-04", "order": 52 + }, + { + "id": "5462aa90", + "title": "ArgoCD pour GitOps moderne", + "url": "https://github.com/khalilbenaz/khalilbenaz.github.io/issues/264", + "excerpt": "## ArgoCD — GitOps en pratique GitOps = git comme source de vérité pour Kubernetes. Push to git → ArgoCD synchronise cluster avec git. ```yaml # Application ArgoCD apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: my-app spec: source: repoURL: https://github.com/me/k8s-config path: apps/my-app/overlays/prod targetRevision: main destination: server: https://kubernetes.default.svc namespace: production", + "tags": [ + "BLOG", + "KUBERNETES" + ], + "date": "2026-05-23", + "order": 53 } -] \ No newline at end of file +]