updated ingress

This commit is contained in:
2026-07-30 12:14:31 +02:00
parent 2ac5d6579d
commit 7e9a697bb2
+10
View File
@@ -16,9 +16,19 @@ spec:
labels: labels:
app: {{ .Values.app }} app: {{ .Values.app }}
spec: spec:
securityContext:
runAsNonRoot: true
runAsUser: 65534
seccompProfile:
type: RuntimeDefault
containers: containers:
- name: {{ .Values.app }} - name: {{ .Values.app }}
image: {{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }} image: {{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}
ports: ports:
- containerPort: {{ .Values.ports.containerPort }} - containerPort: {{ .Values.ports.containerPort }}
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL