Unverified Commit 6458ef80 authored by ptarasiewiczNV's avatar ptarasiewiczNV Committed by GitHub
Browse files

fix: Update model cache pvc name (#5270)


Signed-off-by: default avatarPiotr Tarasiewicz <ptarasiewicz@nvidia.com>
parent fcc4a60f
...@@ -72,7 +72,7 @@ Test the deployment locally by port-forwarding and sending a request: ...@@ -72,7 +72,7 @@ Test the deployment locally by port-forwarding and sending a request:
```bash ```bash
# Port-forward the frontend Service to localhost:8000 (replace <frontend-svc> with the actual Service name) # Port-forward the frontend Service to localhost:8000 (replace <frontend-svc> with the actual Service name)
kubectl port-forward svc/test3-vllm-dsr1-frontend 8000:8000 -n ${NAMESPACE} & kubectl port-forward svc/vllm-dsr1-frontend 8000:8000 -n ${NAMESPACE} &
``` ```
```bash ```bash
......
...@@ -4,11 +4,11 @@ ...@@ -4,11 +4,11 @@
apiVersion: nvidia.com/v1alpha1 apiVersion: nvidia.com/v1alpha1
kind: DynamoGraphDeployment kind: DynamoGraphDeployment
metadata: metadata:
name: test3-vllm-dsr1 name: vllm-dsr1
spec: spec:
backendFramework: vllm backendFramework: vllm
pvcs: pvcs:
- name: model-cache-pvc - name: model-cache
create: false create: false
services: services:
Frontend: Frontend:
...@@ -37,7 +37,7 @@ spec: ...@@ -37,7 +37,7 @@ spec:
custom: custom:
rdma/ib: "8" rdma/ib: "8"
volumeMounts: volumeMounts:
- name: model-cache-pvc - name: model-cache
mountPoint: /model-cache mountPoint: /model-cache
sharedMemory: sharedMemory:
size: 80Gi size: 80Gi
...@@ -104,7 +104,7 @@ spec: ...@@ -104,7 +104,7 @@ spec:
custom: custom:
rdma/ib: "8" rdma/ib: "8"
volumeMounts: volumeMounts:
- name: model-cache-pvc - name: model-cache
mountPoint: /model-cache mountPoint: /model-cache
sharedMemory: sharedMemory:
size: 80Gi size: 80Gi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment