Skip to content

Commit

Permalink
fix(plex): Probes
Browse files Browse the repository at this point in the history
  • Loading branch information
bjw-s committed Dec 6, 2024
1 parent 814f16c commit e92e43f
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions kubernetes/main/apps/media/plex/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,32 @@ spec:
PLEX_ADVERTISE_URL: https://10.1.1.136:32400,https://plex.bjw-s.dev:443
PLEX_NO_AUTH_NETWORKS: 10.244.0.0/16
probes:
liveness:
enabled: true
readiness:
liveness: &probes
enabled: true
custom: true
spec:
httpGet:
path: /identity
port: 32400
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
startup:
enabled: true
spec:
failureThreshold: 30
periodSeconds: 5
periodSeconds: 10
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- ALL
resources:
requests:
cpu: 100m
memory: 9248M
limits:
gpu.intel.com/i915: 1
memory: 9248M
Expand Down

0 comments on commit e92e43f

Please sign in to comment.