Skip to content

Commit

Permalink
Fix mountPath to use /tmp instead of /data (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarobartt authored Jan 13, 2025
1 parent 9bec084 commit 847a657
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions examples/gke/tei-deployment/cpu-config/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ spec:
- name: PORT
value: "8080"
volumeMounts:
- mountPath: /data
name: data
- mountPath: /tmp
name: tmp
volumes:
- name: data
- name: tmp
emptyDir: {}
nodeSelector:
cloud.google.com/compute-class: "Performance"
Expand Down
6 changes: 3 additions & 3 deletions examples/gke/tei-deployment/gpu-config/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ spec:
volumeMounts:
- mountPath: /dev/shm
name: dshm
- mountPath: /data
name: data
- mountPath: /tmp
name: tmp
volumes:
- name: dshm
emptyDir:
medium: Memory
sizeLimit: 1Gi
- name: data
- name: tmp
emptyDir: {}
nodeSelector:
cloud.google.com/gke-accelerator: nvidia-tesla-t4
6 changes: 3 additions & 3 deletions examples/gke/tgi-deployment/config/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ spec:
volumeMounts:
- mountPath: /dev/shm
name: dshm
- mountPath: /data
name: data
- mountPath: /tmp
name: tmp
volumes:
- name: dshm
emptyDir:
medium: Memory
sizeLimit: 1Gi
- name: data
- name: tmp
emptyDir: {}
nodeSelector:
cloud.google.com/gke-accelerator: nvidia-l4
6 changes: 3 additions & 3 deletions examples/gke/tgi-llama-405b-deployment/config/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ spec:
volumeMounts:
- mountPath: /dev/shm
name: dshm
- mountPath: /data
name: data
- mountPath: /tmp
name: tmp
volumes:
- name: dshm
emptyDir:
medium: Memory
sizeLimit: 1Gi
- name: data
- name: tmp
emptyDir: {}
nodeSelector:
cloud.google.com/gke-accelerator: nvidia-h100-80gb
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ spec:
volumeMounts:
- mountPath: /dev/shm
name: dshm
- mountPath: /data
name: data
- mountPath: /tmp
name: tmp
volumes:
- name: dshm
emptyDir:
medium: Memory
sizeLimit: 1Gi
- name: data
- name: tmp
emptyDir: {}
nodeSelector:
cloud.google.com/gke-accelerator: nvidia-l4
6 changes: 3 additions & 3 deletions examples/gke/tgi-multi-lora-deployment/config/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ spec:
volumeMounts:
- mountPath: /dev/shm
name: dshm
- mountPath: /data
name: data
- mountPath: /tmp
name: tmp
volumes:
- name: dshm
emptyDir:
medium: Memory
sizeLimit: 1Gi
- name: data
- name: tmp
emptyDir: {}
nodeSelector:
cloud.google.com/gke-accelerator: nvidia-l4

0 comments on commit 847a657

Please sign in to comment.