From a7089afac92116638cd8c6fcc7fdfcde9148e685 Mon Sep 17 00:00:00 2001 From: dolpher Date: Thu, 21 Nov 2024 14:21:12 +0800 Subject: [PATCH] Fix the helm repo links (#598) Signed-off-by: Dolpher Du --- cloud-service-provider/aws/eks/terraform/README.MD | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/cloud-service-provider/aws/eks/terraform/README.MD b/cloud-service-provider/aws/eks/terraform/README.MD index 22aa68b53..1570db699 100644 --- a/cloud-service-provider/aws/eks/terraform/README.MD +++ b/cloud-service-provider/aws/eks/terraform/README.MD @@ -23,13 +23,6 @@ Initialize the Terraform environment. terraform init ``` -Add OPEA Helm chart repository. - -```bash -helm repo add opea https://opea-project.github.io/GenAIInfra -helm repo update -``` - ## EKS cluster By default, 1-node cluster is created which is suitable for running the OPEA application. See `variables.tf` and `opea-.tfvars` if you want to tune the cluster properties, e.g., number of nodes, instance types or disk size. @@ -56,7 +49,7 @@ Now you should have access to the cluster via the `kubectl` command. Deploy ChatQnA Application with Helm ```bash -helm install -n chatqna --create-namespace chatqna opea/chatqna --set service.type=LoadBalancer --set global.modelUsePVC=model-volume --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} +helm install -n chatqna --create-namespace chatqna oci://ghcr.io/opea-project/charts/chatqna --set service.type=LoadBalancer --set global.modelUsePVC=model-volume --set global.HUGGINGFACEHUB_API_TOKEN=${HFTOKEN} ``` Create the PVC as mentioned [above](#-persistent-volume-claim)