From 0fdf7c7edf8261c6dc0e9d6c75b5ae81dca2422a Mon Sep 17 00:00:00 2001 From: Deep Koluguri Date: Sat, 27 Jun 2026 16:00:17 -0400 Subject: [PATCH] Fix puppeteer permission issue --- k8s/utility-agent.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/k8s/utility-agent.yaml b/k8s/utility-agent.yaml index af398e3..fbf2e55 100644 --- a/k8s/utility-agent.yaml +++ b/k8s/utility-agent.yaml @@ -23,6 +23,17 @@ spec: volumeMounts: - name: app-volume mountPath: /app + - name: chown-permissions + image: alpine + command: + - /bin/sh + - -c + - "chown -R 999:999 /app && chown -R 999:999 /secrets" + volumeMounts: + - name: app-volume + mountPath: /app + - name: utility-secrets + mountPath: /secrets containers: - name: utility-agent # We use a custom puppeteer-compatible image or just build one.