selenium: right-size hub + chrome + edge memory limits #28

Merged
bluejay merged 1 commits from ops/selenium-right-size-memory-2026-05-25 into main 2026-05-26 01:12:21 +00:00

View File

@@ -132,13 +132,18 @@ spec:
initialDelaySeconds: 10 initialDelaySeconds: 10
periodSeconds: 5 periodSeconds: 5
timeoutSeconds: 5 timeoutSeconds: 5
# Hub baseline working set ~766Mi on 2026-05-25 (75% of prior 1Gi
# limit). Bump to 1.5Gi / 1Gi to keep ~50% headroom; matches the
# stampede-buffer pattern documented for multus
# (feedback_k8s_cni_multus_sizing). CPU left alone — observed 54m
# against a 500m limit, no contention.
resources: resources:
limits: limits:
cpu: 500m cpu: 500m
memory: 1Gi memory: 1536Mi
requests: requests:
cpu: 250m cpu: 250m
memory: 512Mi memory: 1Gi
--- ---
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
@@ -198,13 +203,18 @@ spec:
port: 5555 port: 5555
initialDelaySeconds: 15 initialDelaySeconds: 15
periodSeconds: 5 periodSeconds: 5
# Chromium-based browser node. Bumped from 1Gi -> 2Gi (req 512Mi
# -> 1Gi) on 2026-05-25 — Edge had 51 OOMKills in 5d on the
# original 1Gi cap (~1 OOM every 2.4h), and Chrome at maxSessions=2
# was running 684Mi idle on the same cap. Matches the Firefox node's
# tested-stable 2Gi limit. CPU unchanged.
resources: resources:
limits: limits:
cpu: '1' cpu: '1'
memory: 1Gi memory: 2Gi
requests: requests:
cpu: 500m cpu: 500m
memory: 512Mi memory: 1Gi
volumeMounts: volumeMounts:
- mountPath: /dev/shm - mountPath: /dev/shm
name: dshm name: dshm
@@ -378,13 +388,18 @@ spec:
port: 5555 port: 5555
initialDelaySeconds: 15 initialDelaySeconds: 15
periodSeconds: 5 periodSeconds: 5
# Chromium-based browser node. Bumped from 1Gi -> 2Gi (req 512Mi
# -> 1Gi) on 2026-05-25 — Edge had 51 OOMKills in 5d on the
# original 1Gi cap (~1 OOM every 2.4h), and Chrome at maxSessions=2
# was running 684Mi idle on the same cap. Matches the Firefox node's
# tested-stable 2Gi limit. CPU unchanged.
resources: resources:
limits: limits:
cpu: '1' cpu: '1'
memory: 1Gi memory: 2Gi
requests: requests:
cpu: 500m cpu: 500m
memory: 512Mi memory: 1Gi
volumeMounts: volumeMounts:
- mountPath: /dev/shm - mountPath: /dev/shm
name: dshm name: dshm