Skip to content

Commit d478e30

Browse files
authored
chore(versions): align tutorials examples with 26.07 release train (#155)
Bump tritonserver container/branch references 26.06 -> 26.07 (and r26.06 -> r26.07) across tutorial READMEs, Dockerfiles, build scripts, and Kubernetes manifests for the 26.07 release.
1 parent 69217d9 commit d478e30

19 files changed

Lines changed: 39 additions & 39 deletions

File tree

Conceptual_Guide/Part_4-inference_acceleration/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ Before proceeding, please set up a model repository for the Text Recognition mod
135135

136136
```
137137
# Server Container
138-
docker run --gpus=all -it --shm-size=256m --rm -p8000:8000 -p8001:8001 -p8002:8002 -v$(pwd):/workspace/ -v/$(pwd)/model_repository:/models nvcr.io/nvidia/tritonserver:26.06-py3 bash
138+
docker run --gpus=all -it --shm-size=256m --rm -p8000:8000 -p8001:8001 -p8002:8002 -v$(pwd):/workspace/ -v/$(pwd)/model_repository:/models nvcr.io/nvidia/tritonserver:26.07-py3 bash
139139
140140
# Client Container (on a different terminal)
141-
docker run -it --net=host -v ${PWD}:/workspace/ nvcr.io/nvidia/tritonserver:26.06-py3-sdk bash
141+
docker run -it --net=host -v ${PWD}:/workspace/ nvcr.io/nvidia/tritonserver:26.07-py3-sdk bash
142142
```
143143

144144
Since this is a model we converted to ONNX, and TensorRT acceleration examples are linked throughout the explanation, we will explore the ONNX pathway. There are three cases to consider with ONNX backend:

Conceptual_Guide/Part_5-Model_Ensembles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ We'll again be launching Triton using docker containers. This time, we'll start
315315
docker run --gpus=all -it --shm-size=1G --rm \
316316
-p8000:8000 -p8001:8001 -p8002:8002 \
317317
-v ${PWD}:/workspace/ -v ${PWD}/model_repository:/models \
318-
nvcr.io/nvidia/tritonserver:26.06-py3
318+
nvcr.io/nvidia/tritonserver:26.07-py3
319319
```
320320

321321
We'll need to install a couple of dependencies for our Python backend scripts.

Deployment/Kubernetes/EKS_Multinode_Triton_TRTLLM/multinode_helm_chart/containers/triton_trt_llm.containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG BASE_CONTAINER_IMAGE=nvcr.io/nvidia/tritonserver:26.06-trtllm-python-py3
15+
ARG BASE_CONTAINER_IMAGE=nvcr.io/nvidia/tritonserver:26.07-trtllm-python-py3
1616
FROM ${BASE_CONTAINER_IMAGE}
1717

1818
ENV EFA_INSTALLER_VERSION=1.33.0

Deployment/Kubernetes/EKS_Multinode_Triton_TRTLLM/multinode_helm_chart/gen_ai_perf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: triton
10-
image: nvcr.io/nvidia/tritonserver:26.06-py3-sdk
10+
image: nvcr.io/nvidia/tritonserver:26.07-py3-sdk
1111
command: ["sleep", "infinity"]
1212
volumeMounts:
1313
- mountPath: /var/run/models

Deployment/Kubernetes/EKS_Multinode_Triton_TRTLLM/multinode_helm_chart/setup_ssh_efs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: triton
10-
image: nvcr.io/nvidia/tritonserver:26.06-trtllm-python-py3
10+
image: nvcr.io/nvidia/tritonserver:26.07-trtllm-python-py3
1111
command: ["sleep", "infinity"]
1212
resources:
1313
limits:

Deployment/Kubernetes/TensorRT-LLM_Autoscaling_and_Load_Balancing/containers/triton_trt-llm.containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG BASE_CONTAINER_IMAGE=nvcr.io/nvidia/tritonserver:26.06-trtllm-python-py3
15+
ARG BASE_CONTAINER_IMAGE=nvcr.io/nvidia/tritonserver:26.07-trtllm-python-py3
1616
ARG ENGINE_DEST_PATH=/var/run/engines
1717
ARG HF_HOME=/var/run/cache
1818

Deployment/Kubernetes/TensorRT-LLM_Autoscaling_and_Load_Balancing/setup_ssh-nfs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: triton
10-
image: nvcr.io/nvidia/tritonserver:26.06-trtllm-python-py3
10+
image: nvcr.io/nvidia/tritonserver:26.07-trtllm-python-py3
1111
command: ["sleep", "infinity"]
1212
resources:
1313
limits:

Deployment/Kubernetes/TensorRT-LLM_Multi-Node_Distributed_Models/containers/triton_trt-llm.containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG BASE_CONTAINER_IMAGE=nvcr.io/nvidia/tritonserver:26.06-trtllm-python-py3
15+
ARG BASE_CONTAINER_IMAGE=nvcr.io/nvidia/tritonserver:26.07-trtllm-python-py3
1616
ARG ENGINE_DEST_PATH=/var/run/models/engine
1717
ARG HF_HOME=/var/run/hugging_face
1818
ARG MODEL_DEST_PATH=/var/run/models/model

Feature_Guide/Speculative_Decoding/vLLM/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ To run Draft Model-Based Speculative Decoding with Triton Inference Server, it i
198198
docker run --gpus all -it --net=host --rm -p 8001:8001 --shm-size=1G \
199199
--ulimit memlock=-1 --ulimit stack=67108864 \
200200
-v </path/to/model_repository>:/model_repository \
201-
nvcr.io/nvidia/tritonserver:26.06-vllm-python-py3 \
201+
nvcr.io/nvidia/tritonserver:26.07-vllm-python-py3 \
202202
tritonserver --model-repository /model_repository \
203203
--model-control-mode explicit --load-model opt_model
204204
```

Popular_Models_Guide/DeepSeek/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Then you can run the tritonserver as usual
6767
LOCAL_MODEL_REPOSITORY=./vllm_backend/samples/model_repository/
6868
docker run --rm -it --net host --shm-size=2g --ulimit memlock=-1 \
6969
--ulimit stack=67108864 --gpus all -v $LOCAL_MODEL_REPOSITORY:/opt/tritonserver/model_repository \
70-
nvcr.io/nvidia/tritonserver:26.06-vllm-python-py3 tritonserver --model-repository=model_repository/
70+
nvcr.io/nvidia/tritonserver:26.07-vllm-python-py3 tritonserver --model-repository=model_repository/
7171
```
7272
The server has launched successfully when you see the following outputs in your console:
7373

@@ -100,7 +100,7 @@ that has an example client.py to test the model.
100100

101101
```bash
102102
LOCAL_WORKSPACE=./vllm_backend/samples
103-
docker run -ti --gpus all --network=host --pid=host --ipc=host -v $LOCAL_WORKSPACE:/workspace nvcr.io/nvidia/tritonserver:26.06-py3-sdk
103+
docker run -ti --gpus all --network=host --pid=host --ipc=host -v $LOCAL_WORKSPACE:/workspace nvcr.io/nvidia/tritonserver:26.07-py3-sdk
104104
```
105105
Then you can use client as follows:
106106
```bash

0 commit comments

Comments
 (0)