Skip to content

Commit 402a10f

Browse files
authored
DCGM-Exporter release 3.3.8-3.6.0 (#390)
1 parent 178d22f commit 402a10f

9 files changed

+21
-21
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Official documentation for DCGM-Exporter can be found on [docs.nvidia.com](https
1111
To gather metrics on a GPU node, simply start the `dcgm-exporter` container:
1212

1313
```shell
14-
docker run -d --gpus all --rm -p 9400:9400 nvcr.io/nvidia/k8s/dcgm-exporter:3.3.7-3.5.0-ubuntu22.04
14+
docker run -d --gpus all --rm -p 9400:9400 nvcr.io/nvidia/k8s/dcgm-exporter:3.3.8-3.6.0-ubuntu22.04
1515
curl localhost:9400/metrics
1616
# HELP DCGM_FI_DEV_SM_CLOCK SM clock frequency (in MHz).
1717
# TYPE DCGM_FI_DEV_SM_CLOCK gauge

dcgm-exporter.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ metadata:
1818
name: "dcgm-exporter"
1919
labels:
2020
app.kubernetes.io/name: "dcgm-exporter"
21-
app.kubernetes.io/version: "3.5.0"
21+
app.kubernetes.io/version: "3.6.0"
2222
spec:
2323
updateStrategy:
2424
type: RollingUpdate
2525
selector:
2626
matchLabels:
2727
app.kubernetes.io/name: "dcgm-exporter"
28-
app.kubernetes.io/version: "3.5.0"
28+
app.kubernetes.io/version: "3.6.0"
2929
template:
3030
metadata:
3131
labels:
3232
app.kubernetes.io/name: "dcgm-exporter"
33-
app.kubernetes.io/version: "3.5.0"
33+
app.kubernetes.io/version: "3.6.0"
3434
name: "dcgm-exporter"
3535
spec:
3636
containers:
37-
- image: "nvcr.io/nvidia/k8s/dcgm-exporter:3.3.7-3.5.0-ubuntu22.04"
37+
- image: "nvcr.io/nvidia/k8s/dcgm-exporter:3.3.8-3.6.0-ubuntu22.04"
3838
env:
3939
- name: "DCGM_EXPORTER_LISTEN"
4040
value: ":9400"
@@ -64,11 +64,11 @@ metadata:
6464
name: "dcgm-exporter"
6565
labels:
6666
app.kubernetes.io/name: "dcgm-exporter"
67-
app.kubernetes.io/version: "3.5.0"
67+
app.kubernetes.io/version: "3.6.0"
6868
spec:
6969
selector:
7070
app.kubernetes.io/name: "dcgm-exporter"
71-
app.kubernetes.io/version: "3.5.0"
71+
app.kubernetes.io/version: "3.6.0"
7272
ports:
7373
- name: "metrics"
7474
port: 9400

deployment/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apiVersion: v2
22
name: dcgm-exporter
33
description: A Helm chart for DCGM exporter
4-
version: "3.5.0"
4+
version: "3.6.0"
55
kubeVersion: ">= 1.19.0-0"
6-
appVersion: "3.5.0"
6+
appVersion: "3.6.0"
77
sources:
88
- https://github.com/nvidia/dcgm-exporter
99
home: https://github.com/nvidia/dcgm-exporter/

deployment/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ image:
1717
pullPolicy: IfNotPresent
1818
# Image tag defaults to AppVersion, but you can use the tag key
1919
# for the image tag, e.g:
20-
tag: 3.3.7-3.5.0-ubuntu22.04
20+
tag: 3.3.8-3.6.0-ubuntu22.04
2121

2222
# Change the following reference to "/etc/dcgm-exporter/default-counters.csv"
2323
# to stop profiling metrics from DCGM

docker/Dockerfile.ubi9

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nvcr.io/nvidia/cuda:12.5.1-base-ubi9 AS builder
1+
FROM nvcr.io/nvidia/cuda:12.6.1-base-ubi9 AS builder
22
ARG GOLANG_VERSION=1.22.4
33
WORKDIR /go/src/github.com/NVIDIA/dcgm-exporter
44
RUN set -eux; \
@@ -40,7 +40,7 @@ COPY . .
4040

4141
RUN make binary check-format
4242

43-
FROM nvcr.io/nvidia/cuda:12.5.1-base-ubi9
43+
FROM nvcr.io/nvidia/cuda:12.6.1-base-ubi9
4444
ARG DCGM_VERSION
4545
ARG VERSION
4646
ARG DIST_DIR

docker/Dockerfile.ubuntu22.04

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nvcr.io/nvidia/cuda:12.5.1-base-ubuntu22.04 AS builder
1+
FROM nvcr.io/nvidia/cuda:12.6.1-base-ubuntu22.04 AS builder
22
ARG GOLANG_VERSION=1.22.4
33
WORKDIR /go/src/github.com/NVIDIA/dcgm-exporter
44
RUN set -eux; \
@@ -45,7 +45,7 @@ COPY . .
4545

4646
RUN make binary check-format
4747

48-
FROM nvcr.io/nvidia/cuda:12.5.1-base-ubuntu22.04
48+
FROM nvcr.io/nvidia/cuda:12.6.1-base-ubuntu22.04
4949

5050
ARG VERSION
5151
ARG DCGM_VERSION

hack/VERSION

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
OLD_DCGM_VERSION=3.3.6
2-
OLD_EXPORTER_VERSION=3.4.2
3-
NEW_DCGM_VERSION=3.3.7
4-
NEW_EXPORTER_VERSION=3.5.0
1+
OLD_DCGM_VERSION=3.3.7
2+
OLD_EXPORTER_VERSION=3.5.0
3+
NEW_DCGM_VERSION=3.3.8
4+
NEW_EXPORTER_VERSION=3.6.0

service-monitor.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ metadata:
1818
name: "dcgm-exporter"
1919
labels:
2020
app.kubernetes.io/name: "dcgm-exporter"
21-
app.kubernetes.io/version: "3.5.0"
21+
app.kubernetes.io/version: "3.6.0"
2222
spec:
2323
selector:
2424
matchLabels:
2525
app.kubernetes.io/name: "dcgm-exporter"
26-
app.kubernetes.io/version: "3.5.0"
26+
app.kubernetes.io/version: "3.6.0"
2727
endpoints:
2828
- port: "metrics"
2929
path: "/metrics"

tests/e2e/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ GO_CMD ?= go
1616
NAMESPACE ?= "dcgm-exporter"
1717
CHART ?= "./../../deployment/"
1818
IMAGE_REPOSITORY ?= "nvcr.io/nvidia/k8s/dcgm-exporter"
19-
IMAGE_TAG ?= "3.3.7-3.5.0-ubuntu22.04"
19+
IMAGE_TAG ?= "3.3.8-3.6.0-ubuntu22.04"
2020
KUBECONFIG ?= "~/.kube/config"
2121

2222
define TEST_CMD

0 commit comments

Comments
 (0)