Skip to content

Commit 265a82d

Browse files
authored
chore(server): before the code freeze (#8724)
1 parent e5aecb3 commit 265a82d

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile.sdk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ARG TRITON_ENABLE_GPU=ON
4141
ARG JAVA_BINDINGS_MAVEN_VERSION=3.8.4
4242
ARG JAVA_BINDINGS_JAVACPP_PRESETS_TAG=1.5.8
4343
# DCGM version to install for Model Analyzer
44-
ARG DCGM_VERSION=4.5.2-1
44+
ARG DCGM_VERSION=4.5.3-1
4545

4646
ARG NVIDIA_TRITON_SERVER_SDK_VERSION=unknown
4747
ARG NVIDIA_BUILD_ID=unknown

build.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@
7171
#
7272

7373
DEFAULT_TRITON_VERSION_MAP = {
74-
"release_version": "2.67.0",
75-
"triton_container_version": "26.03",
74+
"release_version": "2.68.0",
75+
"triton_container_version": "26.04dev",
7676
"upstream_container_version": "26.03",
77-
"ort_version": "1.24.2",
77+
"ort_version": "1.24.4",
7878
"ort_openvino_version": "2026.0.0",
7979
"standalone_openvino_version": "2026.0.0",
80-
"dcgm_version": "4.5.2-1",
80+
"dcgm_version": "4.5.3-1",
8181
"vllm_version": "0.16.0",
8282
"rhel_py_version": "3.12.3",
8383
}

compose.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright 2021-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright 2021-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -298,7 +298,7 @@ def create_argmap(images, skip_pull):
298298
dcgm_ver = re.search("DCGM_VERSION=([\S]{4,}) ", vars)
299299
dcgm_version = ""
300300
if dcgm_ver is None:
301-
dcgm_version = "4.4.0-1"
301+
dcgm_version = "4.5.3-1"
302302
log(
303303
"WARNING: DCGM version not found from image, installing the earlierst version {}".format(
304304
dcgm_version

0 commit comments

Comments
 (0)