Skip to content

Commit c018850

Browse files
author
tylertitsworth
committed
label pvc
Signed-off-by: tylertitsworth <tyler.titsworth@intel.com>
1 parent 8463a19 commit c018850

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

workflows/charts/tgi/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ For more information about how to use Huggingface text-generation-inference with
2121
| fullnameOverride | string | `""` | Full qualified Domain Name |
2222
| ingress | object | `{"annotations":{},"className":"","enabled":false,"hosts":[{"host":"chart-example.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}],"tls":[]}` | Ingress configuration |
2323
| nameOverride | string | `""` | Name of the serving service |
24-
| pvc | object | `{"create":true,"name":"model-server-cache","size":"15Gi","storageClassName":"nil"}` | Choose to either use an existing PVC or create a new one |
24+
| pvc | object | `{"create":true,"name":"model-server-cache","size":"15Gi","storageClassName":"nil"}` | Configure Storage Volume |
25+
| pvc.create | bool | `true` | Create a new PVC |
26+
| pvc.name | string | `"model-server-cache"` | Specify the name of either an existing or new PVC |
2527
| secret.encodedToken | string | `""` | Base64 Encoded Huggingface Hub API Token |
2628
| securityContext | object | `{}` | Security Context Configuration |
2729
| service | object | `{"port":80,"type":"NodePort"}` | Service configuration |

workflows/charts/tgi/values.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@ ingress:
6262
# - secretName: chart-example-tls
6363
# hosts:
6464
# - chart-example.local
65-
# -- Choose to either use an existing PVC or create a new one
65+
# -- Configure Storage Volume
6666
pvc:
67+
# -- Specify the name of either an existing or new PVC
6768
name: model-server-cache
69+
# -- Create a new PVC
6870
create: true
6971
storageClassName: nil
7072
size: 15Gi

0 commit comments

Comments
 (0)