diff --git a/k8s/apps/hexound/deployment.yaml b/k8s/apps/hexound/deployment.yaml index 087517a..990c612 100644 --- a/k8s/apps/hexound/deployment.yaml +++ b/k8s/apps/hexound/deployment.yaml @@ -16,6 +16,8 @@ spec: volumes: - name: hexound-repo emptyDir: {} + - name: tmp-dir + emptyDir: {} initContainers: - name: git-cloner image: alpine/git @@ -35,6 +37,8 @@ spec: - name: hexound-repo mountPath: /var/www/html readOnly: true + - name: tmp-dir + mountPath: /tmp securityContext: readOnlyRootFilesystem: true allowPrivilegeEscalation: false