File tree Expand file tree Collapse file tree 9 files changed +28
-17
lines changed
helm/nvidia-device-plugin Expand file tree Collapse file tree 9 files changed +28
-17
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ### v0.17.0-rc.1
4
+ - Add CAP_SYS_ADMIN if volume-mounts list strategy is included
5
+ - Remove unneeded DEVICE_PLUGIN_MODE envvar
6
+ - Fix applying SELinux label for MPS
7
+ - Use a base image that aligns with the ubi-minimal base image
8
+ - Switch to a ubi9-based base image
9
+ - Remove namespace field from cluster-scoped resources
10
+ - Generate labels for IMEX cligue and domain
11
+ - Add optional injection of the default IMEX channel
12
+ - Allow kubelet-socket to be specified as command line argument
13
+
3
14
### v0.16.2
4
15
- Add CAP_SYS_ADMIN if volume-mounts list strategy is included (fixes #856 )
5
16
- Remove unneeded DEVICE_PLUGIN_MODE envvar
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v2
2
2
name : nvidia-device-plugin
3
3
type : application
4
4
description : A Helm chart for the nvidia-device-plugin on Kubernetes
5
- version : " 0.16.2 "
6
- appVersion : " 0.16.2 "
5
+ version : " 0.17.0-rc.1 "
6
+ appVersion : " 0.17.0-rc.1 "
7
7
kubeVersion : " >= 1.10.0-0"
8
8
home : https://github.com/NVIDIA/k8s-device-plugin
9
9
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
4
4
name : gpu-feature-discovery
5
5
labels :
6
6
app.kubernetes.io/name : gpu-feature-discovery
7
- app.kubernetes.io/version : 0.16.2
7
+ app.kubernetes.io/version : 0.17.0-rc.1
8
8
app.kubernetes.io/part-of : nvidia-gpu
9
9
spec :
10
10
selector :
@@ -15,11 +15,11 @@ spec:
15
15
metadata :
16
16
labels :
17
17
app.kubernetes.io/name : gpu-feature-discovery
18
- app.kubernetes.io/version : 0.16.2
18
+ app.kubernetes.io/version : 0.17.0-rc.1
19
19
app.kubernetes.io/part-of : nvidia-gpu
20
20
spec :
21
21
containers :
22
- - image : nvcr.io/nvidia/k8s-device-plugin:v0.16.2
22
+ - image : nvcr.io/nvidia/k8s-device-plugin:v0.17.0-rc.1
23
23
name : gpu-feature-discovery
24
24
command : ["/usr/bin/gpu-feature-discovery"]
25
25
volumeMounts :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
4
4
name : gpu-feature-discovery
5
5
labels :
6
6
app.kubernetes.io/name : gpu-feature-discovery
7
- app.kubernetes.io/version : 0.16.2
7
+ app.kubernetes.io/version : 0.17.0-rc.1
8
8
app.kubernetes.io/part-of : nvidia-gpu
9
9
spec :
10
10
selector :
@@ -15,11 +15,11 @@ spec:
15
15
metadata :
16
16
labels :
17
17
app.kubernetes.io/name : gpu-feature-discovery
18
- app.kubernetes.io/version : 0.16.2
18
+ app.kubernetes.io/version : 0.17.0-rc.1
19
19
app.kubernetes.io/part-of : nvidia-gpu
20
20
spec :
21
21
containers :
22
- - image : nvcr.io/nvidia/k8s-device-plugin:v0.16.2
22
+ - image : nvcr.io/nvidia/k8s-device-plugin:v0.17.0-rc.1
23
23
name : gpu-feature-discovery
24
24
command : ["/usr/bin/gpu-feature-discovery"]
25
25
volumeMounts :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
4
4
name : gpu-feature-discovery
5
5
labels :
6
6
app.kubernetes.io/name : gpu-feature-discovery
7
- app.kubernetes.io/version : 0.16.2
7
+ app.kubernetes.io/version : 0.17.0-rc.1
8
8
app.kubernetes.io/part-of : nvidia-gpu
9
9
spec :
10
10
selector :
@@ -15,11 +15,11 @@ spec:
15
15
metadata :
16
16
labels :
17
17
app.kubernetes.io/name : gpu-feature-discovery
18
- app.kubernetes.io/version : 0.16.2
18
+ app.kubernetes.io/version : 0.17.0-rc.1
19
19
app.kubernetes.io/part-of : nvidia-gpu
20
20
spec :
21
21
containers :
22
- - image : nvcr.io/nvidia/k8s-device-plugin:v0.16.2
22
+ - image : nvcr.io/nvidia/k8s-device-plugin:v0.17.0-rc.1
23
23
name : gpu-feature-discovery
24
24
command : ["/usr/bin/gpu-feature-discovery"]
25
25
volumeMounts :
Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ metadata:
4
4
name: gpu-feature-discovery
5
5
labels:
6
6
app.kubernetes.io/name: gpu-feature-discovery
7
- app.kubernetes.io/version: 0.16.2
7
+ app.kubernetes.io/version: 0.17.0-rc.1
8
8
app.kubernetes.io/part-of: nvidia-gpu
9
9
spec:
10
10
template:
11
11
metadata:
12
12
labels:
13
13
app.kubernetes.io/name: gpu-feature-discovery
14
- app.kubernetes.io/version: 0.16.2
14
+ app.kubernetes.io/version: 0.17.0-rc.1
15
15
app.kubernetes.io/part-of: nvidia-gpu
16
16
spec:
17
17
nodeName: NODE_NAME
18
18
containers:
19
- - image: nvcr.io/nvidia/k8s-device-plugin:v0.16.2
19
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.17.0-rc.1
20
20
name: gpu-feature-discovery
21
21
command: ["/usr/bin/gpu-feature-discovery"]
22
22
args:
Original file line number Diff line number Diff line change 38
38
# See https://kubernetes.io/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/
39
39
priorityClassName : " system-node-critical"
40
40
containers :
41
- - image : nvcr.io/nvidia/k8s-device-plugin:v0.16.2
41
+ - image : nvcr.io/nvidia/k8s-device-plugin:v0.17.0-rc.1
42
42
name : nvidia-device-plugin-ctr
43
43
env :
44
44
- name : FAIL_ON_INIT_ERROR
Original file line number Diff line number Diff line change 38
38
# See https://kubernetes.io/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/
39
39
priorityClassName : " system-node-critical"
40
40
containers :
41
- - image : nvcr.io/nvidia/k8s-device-plugin:v0.16.2
41
+ - image : nvcr.io/nvidia/k8s-device-plugin:v0.17.0-rc.1
42
42
name : nvidia-device-plugin-ctr
43
43
env :
44
44
- name : FAIL_ON_INIT_ERROR
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ MODULE := github.com/NVIDIA/$(DRIVER_NAME)
17
17
18
18
REGISTRY ?= nvcr.io/nvidia
19
19
20
- VERSION ?= v0.16.2
20
+ VERSION ?= v0.17.0-rc.1
21
21
22
22
# vVERSION represents the version with a guaranteed v-prefix
23
23
vVERSION := v$(VERSION:v%=% )
You can’t perform that action at this time.
0 commit comments