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:
|
limits:
|
||||||
memory: "384Mi"
|
memory: "384Mi"
|
||||||
cpu: "250m"
|
cpu: "250m"
|
||||||
|
securityContext:
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
containers:
|
containers:
|
||||||
- name: umami
|
- name: umami
|
||||||
image: umami
|
image: umami
|
||||||
|
@ -54,11 +60,11 @@ spec:
|
||||||
name: umami-config
|
name: umami-config
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: "256Mi"
|
memory: "64Mi"
|
||||||
cpu: "50m"
|
cpu: "150m"
|
||||||
limits:
|
limits:
|
||||||
memory: "384Mi"
|
memory: "256Mi"
|
||||||
cpu: "100m"
|
cpu: "300m"
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
@ -80,7 +86,7 @@ spec:
|
||||||
capabilities:
|
capabilities:
|
||||||
drop:
|
drop:
|
||||||
- ALL
|
- ALL
|
||||||
readOnlyRootFilesystem: false
|
readOnlyRootFilesystem: true
|
||||||
affinity:
|
affinity:
|
||||||
nodeAffinity:
|
nodeAffinity:
|
||||||
preferredDuringSchedulingIgnoredDuringExecution:
|
preferredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
|
Loading…
Reference in a new issue