@@ -94,13 +94,13 @@ Or fetch the chart archive first, then install from the local `.tgz` file:
9494``` bash
9595helm pull < ngc-helm-repo> /< chart-name> --version < version>
9696
97- helm upgrade --install aiq < chart-name > - < version > .tgz -n ns-aiq \
97+ helm upgrade --install aiq aiq2-web-2.0.0 .tgz -n ns-aiq \
9898 --wait --timeout 10m \
9999 --set ' aiq.apps.backend.imagePullSecrets[0].name=ngc-secret' \
100100 --set ' aiq.apps.frontend.imagePullSecrets[0].name=ngc-secret'
101101```
102102
103- Replace ` <chart-name> ` and ` <version> ` with the values provided to you (for example, ` aiq -web` and ` 2603.7 .0` ).
103+ Replace ` <chart-name> ` and ` <version> ` with the values provided to you (for example, ` aiq2 -web` and ` 2.0 .0` ).
104104
105105For the full NGC chart workflow (value overrides, upgrades, troubleshooting), see ` deploy/helm/README.md ` in the source repository.
106106
@@ -190,7 +190,7 @@ helm upgrade --install aiq <release-or-chart> -n ns-aiq \
190190 --set aiq.apps.backend.env.CONFIG_FILE=configs/config_web_frag.yml
191191```
192192
193- Replace ` <release-or- chart> ` with the NGC repo reference, ` . tgz` file path, or ` deployment-k8s/ ` directory depending on your [ deployment method] ( #deploy ) .
193+ For source chart or ` .tgz ` deployments, use the same chart reference (e.g. ` aiq2-web-2.0.0. tgz` or ` deployment-k8s/ ` ) as in your [ deployment method] ( #deploy ) .
194194
195195## FRAG Integration
196196
@@ -201,7 +201,7 @@ To use the Foundational RAG (FRAG) config, you need a running NVIDIA RAG Bluepri
201201If the RAG Blueprint is deployed in the same Kubernetes cluster, use internal service DNS:
202202
203203``` bash
204- helm upgrade --install aiq < release-or-chart > -n ns-aiq \
204+ helm upgrade --install aiq oci://nvcr.io/nvidia/blueprint/aiq2-web --version 2.0.0 -n ns-aiq \
205205 --set aiq.apps.backend.env.CONFIG_FILE=configs/config_web_frag.yml \
206206 --set aiq.apps.backend.env.RAG_SERVER_URL=http://rag-server.< rag-namespace> .svc.cluster.local:8081/v1 \
207207 --set aiq.apps.backend.env.RAG_INGEST_URL=http://ingestor-server.< rag-namespace> .svc.cluster.local:8082/v1
@@ -214,7 +214,7 @@ Replace `<rag-namespace>` with the namespace where the RAG Blueprint is deployed
214214If the RAG service is running outside the cluster:
215215
216216``` bash
217- helm upgrade --install aiq < release-or-chart > -n ns-aiq \
217+ helm upgrade --install aiq oci://nvcr.io/nvidia/blueprint/aiq2-web --version 2.0.0 -n ns-aiq \
218218 --set aiq.apps.backend.env.CONFIG_FILE=configs/config_web_frag.yml \
219219 --set aiq.apps.backend.env.RAG_SERVER_URL=http://< rag-host> :8081/v1 \
220220 --set aiq.apps.backend.env.RAG_INGEST_URL=http://< rag-ingest-host> :8082/v1
236236` ` `
237237
238238` ` ` bash
239- helm upgrade --install aiq <release-or-chart> -n ns-aiq -f aiq-frag-values.yaml
239+ helm upgrade --install aiq oci://nvcr.io/nvidia/blueprint/aiq2-web --version 2.0.0 -n ns-aiq -f aiq-frag-values.yaml
240240```
241241
242242For complete examples with NGC-specific flags, see ` deploy/helm/README.md ` in the source repository.
@@ -280,9 +280,7 @@ kubectl rollout restart deployment -n ns-aiq aiq-backend aiq-frontend
280280For NGC Helm chart releases:
281281
282282``` bash
283- helm repo update < ngc-helm-repo>
284-
285- helm upgrade aiq < ngc-helm-repo> /< chart-name> --version < new-version> -n ns-aiq \
283+ helm upgrade aiq oci://nvcr.io/nvidia/blueprint/aiq2-web --version 2.0.0 -n ns-aiq \
286284 --wait --timeout 10m \
287285 --set ' aiq.apps.backend.imagePullSecrets[0].name=ngc-secret' \
288286 --set ' aiq.apps.frontend.imagePullSecrets[0].name=ngc-secret'
0 commit comments