Add helm deployment instructions for ChatQnA, AgentQnA, AudioQnA, CodeTrans, DocSum, FaqGen and VisualQnA Signed-off-by: Dolpher Du <dolpher.du@intel.com>
19 lines
758 B
Markdown
19 lines
758 B
Markdown
# Deploy CodeTrans 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 codetrans oci://ghcr.io/opea-project/charts/codetrans --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} -f cpu-values.yaml
|
|
```
|
|
|
|
## Deploy on Gaudi
|
|
|
|
```
|
|
export HFTOKEN="insert-your-huggingface-token-here"
|
|
helm install codetrans oci://ghcr.io/opea-project/charts/codetrans --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} -f gaudi-values.yaml
|
|
```
|