diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-10 11:07:18 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-10 11:07:18 +0200 |
| commit | 5d31c49baec8712100effecc287882a099030e90 (patch) | |
| tree | 906a5fc271c298b902f4141e489ea7b2554deca1 | |
| parent | 42f9f6775fe5b6b059d0fa66f6672e04e99f993d (diff) | |
Run SSH agent sidecar as argocd user (999)
- Fixes permission denied error when repo-server tries to access socket
- Both containers now run as same user for shared socket access
| -rw-r--r-- | f3s/argocd/values.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/f3s/argocd/values.yaml b/f3s/argocd/values.yaml index b2b7500..45ba916 100644 --- a/f3s/argocd/values.yaml +++ b/f3s/argocd/values.yaml @@ -76,6 +76,9 @@ repoServer: extraContainers: - name: ssh-agent image: alpine:3.19 + securityContext: + runAsUser: 999 + runAsGroup: 999 command: - sh - -c |
