Skip to content

Commit 16abc56

Browse files
author
tylertitsworth
committed
remove unecessary values
Signed-off-by: tylertitsworth <tyler.titsworth@intel.com>
1 parent b62a7a6 commit 16abc56

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

workflows/charts/tgi/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ For more information about how to use Huggingface text-generation-inference with
1515
|-----|------|---------|-------------|
1616
| deploy.configMap | object | `{"enabled":true,"name":"intel-proxy-config"}` | ConfigMap of Environment Variables |
1717
| deploy.image | string | `"ghcr.io/huggingface/text-generation-inference:latest-intel"` | Intel TGI Image |
18-
| deploy.model | string | `"HuggingFaceTB/SmolLM-135M"` | Model to be loaded |
19-
| deploy.quantize | string | `""` | Enable Quantization (ex: bitsandbytes-nf4) |
2018
| deploy.replicaCount | int | `1` | Number of pods |
2119
| deploy.resources | object | `{"limits":{"cpu":"4000m","gpu.intel.com/i915":1},"requests":{"cpu":"1000m","memory":"1Gi"}}` | Resource configuration |
2220
| deploy.resources.limits."gpu.intel.com/i915" | int | `1` | Intel GPU Device Configuration |

workflows/charts/tgi/templates/NOTES.txt

-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@
1717
{{- else if contains "ClusterIP" .Values.service.type }}
1818
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "tgi.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
1919
export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
20-
echo "Visit http://127.0.0.1:8080 to use your application"
2120
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT
2221
{{- end }}

workflows/charts/tgi/values.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ deploy:
2323
name: intel-proxy-config
2424
# -- Intel TGI Image
2525
image: ghcr.io/huggingface/text-generation-inference:latest-intel
26-
# -- Model to be loaded
27-
model: HuggingFaceTB/SmolLM-135M
28-
# -- Enable Quantization (ex: bitsandbytes-nf4)
29-
quantize: ""
3026
# -- Number of pods
3127
replicaCount: 1
3228
# -- Resource configuration

0 commit comments

Comments
 (0)