Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/openab/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ spec:
mountPath: {{ $cfg.workingDir | default "/home/agent" }}/AGENTS.md
subPath: AGENTS.md
{{- end }}
- name: tmp
mountPath: /tmp
{{- with $cfg.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand All @@ -93,5 +95,7 @@ spec:
persistentVolumeClaim:
claimName: {{ include "openab.agentFullname" $d }}
{{- end }}
- name: tmp
emptyDir: {}
{{- end }}
{{- end }}
3 changes: 3 additions & 0 deletions charts/openab/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ podSecurityContext:
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
seccompProfile:
type: RuntimeDefault

containerSecurityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- ALL
Expand Down
Loading