datanommer: set memory limit to 1Gi

For an unknown reason on staging, the datanommer pod overloads the node memory and
takes down all the running workload with it.
This set a memory limit to 1Gi (pod takes ~200Mi on prod) to avoid
crashing the compute node (and other workload with it) when that happens.
This commit is contained in:
Francois Andrieu 2024-04-10 18:34:29 +02:00
parent ce0f875245
commit 3f4c4ea19f
No known key found for this signature in database

View file

@ -30,6 +30,9 @@ spec:
imagePullPolicy: Always
ports:
- containerPort: 8080
resources:
limits:
memory: 1Gi
volumeMounts:
- name: fedora-messaging-config-volume
mountPath: "/etc/fedora-messaging"