Update k8s/apps/hexound/deployment.yaml
All checks were successful
Check with kubeconform / lint (push) Successful in 6s

This commit is contained in:
ab
2025-04-13 11:51:31 +00:00
parent 04056e1289
commit 31cb951c40

View File

@ -18,6 +18,10 @@ spec:
emptyDir: {} emptyDir: {}
- name: tmp-dir - name: tmp-dir
emptyDir: {} emptyDir: {}
- name: run-dir
emptyDir: {}
- name: nginx-logs
emptyDir: {}
initContainers: initContainers:
- name: git-cloner - name: git-cloner
image: alpine/git image: alpine/git
@ -39,6 +43,10 @@ spec:
readOnly: true readOnly: true
- name: tmp-dir - name: tmp-dir
mountPath: /tmp mountPath: /tmp
- name: run-dir
mountPath: /run
- name: nginx-logs
mountPath: /var/lib/nginx/logs
securityContext: securityContext:
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
allowPrivilegeEscalation: false allowPrivilegeEscalation: false