Skip to content

Commit

Permalink
fix: make /tmp dir writable
Browse files Browse the repository at this point in the history
  • Loading branch information
xopham committed Feb 9, 2024
1 parent be12be8 commit 1bfd510
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions charts/semgr8s/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ spec:
- mountPath: /.cache
name: cache
readOnly: false
- mountPath: /tmp
name: tmp
readOnly: false
- mountPath: /app/rules
name: rules
readOnly: false
Expand All @@ -67,6 +70,10 @@ spec:
emptyDir: {}
- name: cache
emptyDir: {}
- name: tmp
emptyDir:
medium: "Memory"
sizeLimit: 10Mi
- name: rules
emptyDir: {}
- name: data
Expand Down

0 comments on commit 1bfd510

Please sign in to comment.