Skip to content

Commit 80c4a77

Browse files
authored
DCGM-Exporter 4.0.4 (#457)
1 parent 1204702 commit 80c4a77

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
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 --cap-add SYS_ADMIN --rm -p 9400:9400 nvcr.io/nvidia/k8s/dcgm-exporter:4.1.1-4.0.3-ubuntu22.04
14+
docker run -d --gpus all --cap-add SYS_ADMIN --rm -p 9400:9400 nvcr.io/nvidia/k8s/dcgm-exporter:4.1.1-4.0.4-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: "4.0.3"
21+
app.kubernetes.io/version: "4.0.4"
2222
spec:
2323
updateStrategy:
2424
type: RollingUpdate
2525
selector:
2626
matchLabels:
2727
app.kubernetes.io/name: "dcgm-exporter"
28-
app.kubernetes.io/version: "4.0.3"
28+
app.kubernetes.io/version: "4.0.4"
2929
template:
3030
metadata:
3131
labels:
3232
app.kubernetes.io/name: "dcgm-exporter"
33-
app.kubernetes.io/version: "4.0.3"
33+
app.kubernetes.io/version: "4.0.4"
3434
name: "dcgm-exporter"
3535
spec:
3636
containers:
37-
- image: "nvcr.io/nvidia/k8s/dcgm-exporter:4.1.1-4.0.3-ubuntu22.04"
37+
- image: "nvcr.io/nvidia/k8s/dcgm-exporter:4.1.1-4.0.4-ubuntu22.04"
3838
env:
3939
- name: "DCGM_EXPORTER_LISTEN"
4040
value: ":9400"
@@ -66,11 +66,11 @@ metadata:
6666
name: "dcgm-exporter"
6767
labels:
6868
app.kubernetes.io/name: "dcgm-exporter"
69-
app.kubernetes.io/version: "4.0.3"
69+
app.kubernetes.io/version: "4.0.4"
7070
spec:
7171
selector:
7272
app.kubernetes.io/name: "dcgm-exporter"
73-
app.kubernetes.io/version: "4.0.3"
73+
app.kubernetes.io/version: "4.0.4"
7474
ports:
7575
- name: "metrics"
7676
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: "4.0.3"
4+
version: "4.0.4"
55
kubeVersion: ">= 1.19.0-0"
6-
appVersion: "4.0.3"
6+
appVersion: "4.0.4"
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: 4.1.1-4.0.3-ubuntu22.04
20+
tag: 4.1.1-4.0.4-ubuntu22.04
2121

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

hack/VERSION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
OLD_DCGM_VERSION=4.1.0
2-
OLD_EXPORTER_VERSION=4.0.2
2+
OLD_EXPORTER_VERSION=4.0.3
33
NEW_DCGM_VERSION=4.1.1
4-
NEW_EXPORTER_VERSION=4.0.3
4+
NEW_EXPORTER_VERSION=4.0.4

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: "4.0.3"
21+
app.kubernetes.io/version: "4.0.4"
2222
spec:
2323
selector:
2424
matchLabels:
2525
app.kubernetes.io/name: "dcgm-exporter"
26-
app.kubernetes.io/version: "4.0.3"
26+
app.kubernetes.io/version: "4.0.4"
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 ?= "4.1.1-4.0.3-ubuntu22.04"
19+
IMAGE_TAG ?= "4.1.1-4.0.4-ubuntu22.04"
2020
KUBECONFIG ?= "~/.kube/config"
2121
RUNTIME_CLASS ?= ""
2222
NO_CLEANUP ?= "false"

0 commit comments

Comments
 (0)