We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ded8ada commit 31b55ffCopy full SHA for 31b55ff
docs/deployment/k8s.md
@@ -49,11 +49,14 @@ First, create a Kubernetes PVC and Secret for downloading and storing Hugging Fa
49
metadata:
50
name: hf-token-secret
51
type: Opaque
52
- data:
53
- token: $(HF_TOKEN)
+ stringData:
+ token: "REPLACE_WITH_TOKEN"
54
EOF
55
```
56
57
+Here, the `token` field stores your **Hugging Face access token**. For details on how to generate a token,
58
+see the [Hugging Face documentation](https://huggingface.co/docs/hub/en/security-tokens).
59
+
60
Next, start the vLLM server as a Kubernetes Deployment and Service:
61
62
??? console "Config"
0 commit comments