Skip to content

Commit

Permalink
Bump version to 2.4.6-2.6.8 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
glowkey committed Jul 18, 2022
1 parent be4f390 commit 86a5d68
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
MKDIR ?= mkdir
REGISTRY ?= nvidia

DCGM_VERSION := 2.4.5
DCGM_VERSION := 2.4.6
GOLANG_VERSION := 1.17
VERSION := 2.6.7
VERSION := 2.6.8
FULL_VERSION := $(DCGM_VERSION)-$(VERSION)
OUTPUT := type=oci,dest=/tmp/dcgm-exporter.tar
PLATFORMS := linux/amd64,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Official documentation for DCGM-Exporter can be found on [docs.nvidia.com](https

To gather metrics on a GPU node, simply start the `dcgm-exporter` container:
```
$ docker run -d --gpus all --rm -p 9400:9400 nvcr.io/nvidia/k8s/dcgm-exporter:2.4.5-2.6.7-ubuntu20.04
$ docker run -d --gpus all --rm -p 9400:9400 nvcr.io/nvidia/k8s/dcgm-exporter:2.4.6-2.6.8-ubuntu20.04
$ curl localhost:9400/metrics
# HELP DCGM_FI_DEV_SM_CLOCK SM clock frequency (in MHz).
# TYPE DCGM_FI_DEV_SM_CLOCK gauge
Expand Down
12 changes: 6 additions & 6 deletions dcgm-exporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ metadata:
name: "dcgm-exporter"
labels:
app.kubernetes.io/name: "dcgm-exporter"
app.kubernetes.io/version: "2.6.7"
app.kubernetes.io/version: "2.6.8"
spec:
updateStrategy:
type: RollingUpdate
selector:
matchLabels:
app.kubernetes.io/name: "dcgm-exporter"
app.kubernetes.io/version: "2.6.7"
app.kubernetes.io/version: "2.6.8"
template:
metadata:
labels:
app.kubernetes.io/name: "dcgm-exporter"
app.kubernetes.io/version: "2.6.7"
app.kubernetes.io/version: "2.6.8"
name: "dcgm-exporter"
spec:
containers:
- image: "nvcr.io/nvidia/k8s/dcgm-exporter:2.4.5-2.6.7-ubuntu20.04"
- image: "nvcr.io/nvidia/k8s/dcgm-exporter:2.4.6-2.6.8-ubuntu20.04"
env:
- name: "DCGM_EXPORTER_LISTEN"
value: ":9400"
Expand Down Expand Up @@ -64,11 +64,11 @@ metadata:
name: "dcgm-exporter"
labels:
app.kubernetes.io/name: "dcgm-exporter"
app.kubernetes.io/version: "2.6.7"
app.kubernetes.io/version: "2.6.8"
spec:
selector:
app.kubernetes.io/name: "dcgm-exporter"
app.kubernetes.io/version: "2.6.7"
app.kubernetes.io/version: "2.6.8"
ports:
- name: "metrics"
port: 9400
4 changes: 2 additions & 2 deletions deployment/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
name: dcgm-exporter
description: A Helm chart for DCGM exporter
version: "2.6.7"
version: "2.6.8"
kubeVersion: ">= 1.13.0-0"
appVersion: "2.6.7"
appVersion: "2.6.8"
sources:
- https://github.com/nvidia/dcgm-exporter
home: https://github.com/nvidia/dcgm-exporter/
Expand Down
2 changes: 1 addition & 1 deletion deployment/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ image:
pullPolicy: IfNotPresent
# Image tag defaults to AppVersion, but you can use the tag key
# for the image tag, e.g:
tag: 2.4.5-2.6.7-ubuntu20.04
tag: 2.4.6-2.6.8-ubuntu20.04

# Comment the following line to stop profiling metrics from DCGM
arguments: ["-f", "/etc/dcgm-exporter/dcp-metrics-included.csv"]
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ replace (
)

require (
github.com/NVIDIA/go-dcgm v0.0.0-20220316221121-30356c71fa0c
github.com/NVIDIA/go-dcgm v0.0.0-20220625061956-d4ffb2091c7c
github.com/NVIDIA/gpu-monitoring-tools v0.0.0-20211102125545-5a2c58442e48 // indirect
github.com/gorilla/mux v1.8.0
github.com/sirupsen/logrus v1.7.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ github.com/NVIDIA/go-dcgm v0.0.0-20211026201242-896c0ef328c8 h1:nOn6U08rPRo1D71H
github.com/NVIDIA/go-dcgm v0.0.0-20211026201242-896c0ef328c8/go.mod h1:77DGpdEF+uQYYIRHxeFwfsqvHHT2ef6uVwkWE05FdVc=
github.com/NVIDIA/go-dcgm v0.0.0-20220316221121-30356c71fa0c h1:h9riLJtCutVH3/c6QOd7FY9wVY00ni4ih7tqgKYWaAE=
github.com/NVIDIA/go-dcgm v0.0.0-20220316221121-30356c71fa0c/go.mod h1:atKWXstYFllLarJucBxnt9ivFIPe26Y6S4JQvzqeSr8=
github.com/NVIDIA/go-dcgm v0.0.0-20220625061956-d4ffb2091c7c h1:uEvU/Oc5vRFMf71D4TBfEbCGbNpqfU/2SA5QzLmG28Y=
github.com/NVIDIA/go-dcgm v0.0.0-20220625061956-d4ffb2091c7c/go.mod h1:atKWXstYFllLarJucBxnt9ivFIPe26Y6S4JQvzqeSr8=
github.com/NVIDIA/gpu-monitoring-tools v0.0.0-20211102125545-5a2c58442e48 h1:JO/JF5CBte9mvATbhoh32swu9erf07ZdLgwFj8u21UQ=
github.com/NVIDIA/gpu-monitoring-tools v0.0.0-20211102125545-5a2c58442e48/go.mod h1:oKPJa5eOTkWvlT4/Y4D8Nds44Fzmww5HUK+xwO+DwTA=
github.com/NVIDIA/gpu-monitoring-tools/bindings/go/dcgm v0.0.0-20210325210537-29b4f1784f18/go.mod h1:8qXwltEzU3idjUcVpMOv3FNgxxbDeXZPGMLyc/khWiY=
Expand Down
4 changes: 2 additions & 2 deletions service-monitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ metadata:
name: "dcgm-exporter"
labels:
app.kubernetes.io/name: "dcgm-exporter"
app.kubernetes.io/version: "2.6.7"
app.kubernetes.io/version: "2.6.8"
spec:
selector:
matchLabels:
app.kubernetes.io/name: "dcgm-exporter"
app.kubernetes.io/version: "2.6.7"
app.kubernetes.io/version: "2.6.8"
endpoints:
- port: "metrics"
path: "/metrics"

0 comments on commit 86a5d68

Please sign in to comment.