All gaudi values updated with extra flags. Added helm support for 2 new examples Text2Image and SearchQnA. Minor fix for llm-uservice. Signed-off-by: Dolpher Du <dolpher.du@intel.com>
19 lines
748 B
Markdown
19 lines
748 B
Markdown
# Deploy txt2img on Kubernetes cluster
|
|
|
|
- You should have Helm (version >= 3.15) installed. Refer to the [Helm Installation Guide](https://helm.sh/docs/intro/install/) for more information.
|
|
- For more deploy options, refer to [helm charts README](https://github.com/opea-project/GenAIInfra/tree/main/helm-charts#readme).
|
|
|
|
## Deploy on Xeon
|
|
|
|
```
|
|
export HFTOKEN="insert-your-huggingface-token-here"
|
|
helm install txt2img oci://ghcr.io/opea-project/charts/txt2img --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} -f cpu-values.yaml
|
|
```
|
|
|
|
## Deploy on Gaudi
|
|
|
|
```
|
|
export HFTOKEN="insert-your-huggingface-token-here"
|
|
helm install txt2img oci://ghcr.io/opea-project/charts/txt2img --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} -f gaudi-values.yaml
|
|
```
|