diff --git a/k8s/apps/hexound/deployment.yaml b/k8s/apps/hexound/deployment.yaml index 990c612..7e7a03d 100644 --- a/k8s/apps/hexound/deployment.yaml +++ b/k8s/apps/hexound/deployment.yaml @@ -18,6 +18,10 @@ spec: emptyDir: {} - name: tmp-dir emptyDir: {} + - name: run-dir + emptyDir: {} + - name: nginx-logs + emptyDir: {} initContainers: - name: git-cloner image: alpine/git @@ -39,6 +43,10 @@ spec: readOnly: true - name: tmp-dir mountPath: /tmp + - name: run-dir + mountPath: /run + - name: nginx-logs + mountPath: /var/lib/nginx/logs securityContext: readOnlyRootFilesystem: true allowPrivilegeEscalation: false