-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
pvcStorage
is not provided (#…
…176) * [Add] fix for PVC storage Signed-off-by: ApostaC <[email protected]> * [Update] the tutorial of minimal example to exclude PVC configurations Signed-off-by: ApostaC <[email protected]> * Bumping the helm chart version Signed-off-by: ApostaC <[email protected]> * [fix] condition checking in pvc.yaml Signed-off-by: ApostaC <[email protected]> --------- Signed-off-by: ApostaC <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,10 @@ servingEngineSpec: | |
# - requestMemory: (string) The amount of memory requested for the model, e.g., "16Gi" | ||
# - requestGPU: (int) The number of GPUs requested for the model, e.g., 1 | ||
# | ||
# - pvcStorage: (string) The amount of storage requested for the model, e.g., "50Gi" | ||
This comment has been minimized.
Sorry, something went wrong. |
||
# - pvcAccessMode: (list) The access mode policy for the mounted volume, e.g., ["ReadWriteOnce"] | ||
This comment has been minimized.
Sorry, something went wrong.
01967974760
|
||
# - storageClass: (String) The storage class of the PVC e.g., "", default is "" | ||
# - pvcMatchLabels: (optional, map) The labels to match the PVC, e.g., {model: "opt125m"} | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
01967974760
|
||
# - pvcStorage: (Optional, string) The amount of storage requested for the model, e.g., "50Gi". | ||
# - pvcAccessMode: (Optional, list) The access mode policy for the mounted volume, e.g., ["ReadWriteOnce"] | ||
# - storageClass: (Optional, String) The storage class of the PVC e.g., "", default is "" | ||
# - pvcMatchLabels: (Optional, map) The labels to match the PVC, e.g., {model: "opt125m"} | ||
# | ||
# - vllmConfig: (optional, map) The configuration for the VLLM model, supported options are: | ||
# - enablePrefixCaching: (optional, bool) Enable prefix caching, e.g., false | ||
|
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: my-storage-pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 50Gi
storageClassName: standard
selector:
matchLabels:
model: "opt125m"