feat(umami): ignore events from localhost
All checks were successful
Renovate / renovate (push) Successful in 23s
All checks were successful
Renovate / renovate (push) Successful in 23s
This commit is contained in:
parent
48e9137489
commit
893dfe69e7
2 changed files with 11 additions and 5 deletions
Binary file not shown.
|
@ -37,6 +37,12 @@ spec:
|
|||
limits:
|
||||
memory: "384Mi"
|
||||
cpu: "250m"
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
readOnlyRootFilesystem: true
|
||||
containers:
|
||||
- name: umami
|
||||
image: umami
|
||||
|
@ -54,11 +60,11 @@ spec:
|
|||
name: umami-config
|
||||
resources:
|
||||
requests:
|
||||
memory: "256Mi"
|
||||
cpu: "50m"
|
||||
memory: "64Mi"
|
||||
cpu: "150m"
|
||||
limits:
|
||||
memory: "384Mi"
|
||||
cpu: "100m"
|
||||
memory: "256Mi"
|
||||
cpu: "300m"
|
||||
ports:
|
||||
- containerPort: 3000
|
||||
protocol: TCP
|
||||
|
@ -80,7 +86,7 @@ spec:
|
|||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
readOnlyRootFilesystem: false
|
||||
readOnlyRootFilesystem: true
|
||||
affinity:
|
||||
nodeAffinity:
|
||||
preferredDuringSchedulingIgnoredDuringExecution:
|
||||
|
|
Loading…
Reference in a new issue