From 1938cc8f44e298171886ab67d4ec71400233c326 Mon Sep 17 00:00:00 2001 From: miwr Date: Wed, 19 Mar 2025 13:24:40 +0100 Subject: [PATCH] - name: init-log-permissions image: busybox command: ["sh", "-c", "chown -R 1000:1000 /var/log && chmod -R 775 /var/log"] volumeMounts: - mountPath: /var/log name: log-storage --- template/stacks/ref-implementation/openbao/values.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/template/stacks/ref-implementation/openbao/values.yaml b/template/stacks/ref-implementation/openbao/values.yaml index 2d7d558..7f082a1 100644 --- a/template/stacks/ref-implementation/openbao/values.yaml +++ b/template/stacks/ref-implementation/openbao/values.yaml @@ -3,8 +3,6 @@ server: - name: init-log-permissions image: busybox command: ["sh", "-c", "chown -R 1000:1000 /var/log && chmod -R 775 /var/log"] - securityContext: - runAsUser: 0 volumeMounts: - mountPath: /var/log name: log-storage @@ -19,8 +17,6 @@ server: volumeMounts: - name: log-storage mountPath: /var/log/ - securityContext: - runAsUser: 1 volumes: - name: log-storage