Skip to content

Commit 2e79eae

Browse files
release: update container and chart versions (#158)
* update to release versions * update helm version * update helm chart name
1 parent fcd2806 commit 2e79eae

File tree

7 files changed

+21
-24
lines changed

7 files changed

+21
-24
lines changed

.secrets.baseline

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"filename": "README.md",
134134
"hashed_secret": "73140b88094aaf220a03532196b27b58a03c9b09",
135135
"is_verified": false,
136-
"line_number": 304
136+
"line_number": 303
137137
}
138138
],
139139
"deploy/.env.example": [
@@ -290,5 +290,5 @@
290290
}
291291
]
292292
},
293-
"generated_at": "2026-03-16T23:27:48Z"
293+
"generated_at": "2026-03-17T21:34:16Z"
294294
}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ uv pip install -e ./frontends/debug # Debug console
173173
uv pip install -e ./frontends/aiq_api # Unified API (includes debug)
174174

175175
# Install benchmarks (pick what you need)
176-
uv pip install -e ./frontends/benchmarks/deepresearch_bench
177176
uv pip install -e ./frontends/benchmarks/freshqa
178177

179178
# Install data sources (pick what you need)

deploy/compose/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,16 +97,16 @@ cd deploy/compose
9797
docker login nvcr.io
9898

9999
# Run with pre-built images
100-
BACKEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-agent:2603.7.rc0 \
101-
FRONTEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-frontend-v2:2603.7.rc0 \
100+
BACKEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-agent:2.0.0 \
101+
FRONTEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-frontend:2.0.0 \
102102
docker compose --env-file ../.env -f docker-compose.yaml up -d
103103
```
104104

105105
You can also add these to your `deploy/.env` file:
106106

107107
```bash
108-
BACKEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-agent:2603.7.rc0
109-
FRONTEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-frontend-v2:2603.7.rc0
108+
BACKEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-agent:2.0.0
109+
FRONTEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-frontend:2.0.0
110110
```
111111

112112
Then run without specifying them on the command line:

deploy/compose/docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# BUILD_TARGET=release docker compose --env-file ../.env -f docker-compose.yaml up -d --build
1919
#
2020
# # Use pre-built images from registry (skip --build)
21-
# BACKEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-agent:2603.7.rc0 \
22-
# FRONTEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-frontend-v2:2603.7.rc0 \
21+
# BACKEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-agent:2.0.0 \
22+
# FRONTEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-frontend:2.0.0 \
2323
# docker compose --env-file ../.env -f docker-compose.yaml up -d
2424
#
2525
# Frontend image:

deploy/helm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Download the chart archive first, then install from the local `.tgz` file:
8585
```bash
8686
helm pull <ngc-helm-repo>/<chart-name> --version <version>
8787

88-
helm upgrade --install aiq <chart-name>-<version>.tgz -n ns-aiq \
88+
helm upgrade --install aiq aiq2-web-2.0.0.tgz -n ns-aiq \
8989
--wait --timeout 10m \
9090
--set 'aiq.apps.backend.imagePullSecrets[0].name=ngc-secret' \
9191
--set 'aiq.apps.frontend.imagePullSecrets[0].name=ngc-secret'
@@ -100,7 +100,7 @@ helm upgrade --install aiq <ngc-helm-repo>/<chart-name> --version <version> -n n
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

105105
### Override values
106106

docs/source/deployment/docker-compose.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,16 +144,16 @@ docker login nvcr.io
144144

145145
# Run with pre-built images (no --build flag)
146146
cd deploy/compose
147-
BACKEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-agent:2603.7.rc0 \
148-
FRONTEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-frontend-v2:2603.7.rc0 \
147+
BACKEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-agent:2.0.0 \
148+
FRONTEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-frontend:2.0.0 \
149149
docker compose --env-file ../.env -f docker-compose.yaml up -d
150150
```
151151

152152
You can also add the image variables to `deploy/.env` instead of passing them on the command line:
153153

154154
```bash
155-
BACKEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-agent:2603.7.rc0
156-
FRONTEND_IMAGE=nvcr.io/nvstaging/blueprint/aiq-frontend-v2:2603.7.rc0
155+
BACKEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-agent:2.0.0
156+
FRONTEND_IMAGE=nvcr.io/nvidia/blueprint/aiq-frontend:2.0.0
157157
```
158158

159159
### Release Build

docs/source/deployment/kubernetes.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ Or fetch the chart archive first, then install from the local `.tgz` file:
9494
```bash
9595
helm 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

105105
For 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
201201
If 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
214214
If 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
@@ -236,7 +236,7 @@ aiq:
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

242242
For 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
280280
For 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

Comments
 (0)