From 5f718347b502ab89c145d2459b0c0149c34bf3f8 Mon Sep 17 00:00:00 2001 From: Alexander Rogov Date: Fri, 26 Jun 2026 20:01:15 +0300 Subject: [PATCH] add sysctl init container for argocd-repo-server inotify limits --- bootstrap/argocd/values.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bootstrap/argocd/values.yaml b/bootstrap/argocd/values.yaml index 46f17fe..d1c14ad 100644 --- a/bootstrap/argocd/values.yaml +++ b/bootstrap/argocd/values.yaml @@ -18,3 +18,14 @@ redis: image: repository: docker.io/library/redis tag: 7.4-alpine + +repoServer: + initContainers: + - name: sysctl-inotify + image: busybox:1.36 + command: + - sysctl + - -w + - fs.inotify.max_user_watches=524288 + securityContext: + privileged: true