Skip to content

Commit

Permalink
Added more compute + py3.10 image
Browse files Browse the repository at this point in the history
  • Loading branch information
flimdejong committed Nov 4, 2024
1 parent ba59fb7 commit e4d89eb
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docker/runner/ray-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ spec:
spec:
containers:
- name: ray-head
image: rayproject/ray:2.38.0
image: rayproject/ray:latest-py310
ports:
- containerPort: 8265 # dashboard port
- containerPort: 6379 # redis port
- containerPort: 10001 # GCS server port
- containerPort: 8000 # Serve port
resources:
requests:
cpu: 300m
memory: 256Mi
cpu: "500m"
memory: "1Gi" # Increased from 256Mi
limits:
cpu: 600
memory: 512Mi
cpu: "1" # Changed from 600 (which was too high)
memory: "2Gi" # Increased from 512Mi
command: ["/bin/bash", "-c", "--"]
args: ["ray start --head --port=6379 --dashboard-host=0.0.0.0 --block"]
livenessProbe:
Expand All @@ -40,7 +40,6 @@ spec:
timeoutSeconds: 10
periodSeconds: 30
failureThreshold: 5

readinessProbe:
exec:
command:
Expand Down

0 comments on commit e4d89eb

Please sign in to comment.