feat(helm): update chart nvidia-device-plugin to 0.19.1#1465
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
feat(helm): update chart nvidia-device-plugin to 0.19.1#1465renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
Contributor
|
User renovate[bot] does not have write permissions |
Contributor
--- HelmRelease: kube-system/nvidia-device-plugin DaemonSet: kube-system/nvidia-device-plugin
+++ HelmRelease: kube-system/nvidia-device-plugin DaemonSet: kube-system/nvidia-device-plugin
@@ -23,13 +23,13 @@
annotations: {}
spec:
priorityClassName: system-node-critical
runtimeClassName: nvidia
securityContext: {}
containers:
- - image: nvcr.io/nvidia/k8s-device-plugin:v0.18.2
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.19.1
imagePullPolicy: IfNotPresent
name: nvidia-device-plugin-ctr
command:
- nvidia-device-plugin
env:
- name: MPS_ROOT
--- HelmRelease: kube-system/nvidia-device-plugin DaemonSet: kube-system/nvidia-device-plugin-gpu-feature-discovery
+++ HelmRelease: kube-system/nvidia-device-plugin DaemonSet: kube-system/nvidia-device-plugin-gpu-feature-discovery
@@ -22,15 +22,16 @@
app.kubernetes.io/instance: nvidia-device-plugin
annotations: {}
spec:
priorityClassName: system-node-critical
runtimeClassName: nvidia
securityContext: {}
+ serviceAccountName: nvidia-device-plugin-service-account
initContainers: null
containers:
- - image: nvcr.io/nvidia/k8s-device-plugin:v0.18.2
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.19.1
imagePullPolicy: IfNotPresent
name: gpu-feature-discovery-ctr
command:
- gpu-feature-discovery
env:
- name: NODE_NAME
@@ -38,14 +39,16 @@
fieldRef:
fieldPath: spec.nodeName
- name: NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- - name: GFD_USE_NODE_FEATURE_API
- value: 'false'
+ - name: POD_NAME
+ valueFrom:
+ fieldRef:
+ fieldPath: metadata.name
securityContext:
privileged: true
volumeMounts:
- name: output-dir
mountPath: /etc/kubernetes/node-feature-discovery/features.d
- name: host-sys
--- HelmRelease: kube-system/nvidia-device-plugin DaemonSet: kube-system/nvidia-device-plugin-mps-control-daemon
+++ HelmRelease: kube-system/nvidia-device-plugin DaemonSet: kube-system/nvidia-device-plugin-mps-control-daemon
@@ -24,25 +24,25 @@
spec:
priorityClassName: system-node-critical
runtimeClassName: nvidia
securityContext: {}
hostPID: true
initContainers:
- - image: nvcr.io/nvidia/k8s-device-plugin:v0.18.2
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.19.1
name: mps-control-daemon-mounts
command:
- mps-control-daemon
- mount-shm
securityContext:
privileged: true
volumeMounts:
- name: mps-root
mountPath: /mps
mountPropagation: Bidirectional
containers:
- - image: nvcr.io/nvidia/k8s-device-plugin:v0.18.2
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.19.1
imagePullPolicy: IfNotPresent
name: mps-control-daemon-ctr
command:
- mps-control-daemon
env:
- name: NODE_NAME
--- HelmRelease: kube-system/nvidia-device-plugin ServiceAccount: kube-system/nvidia-device-plugin-service-account
+++ HelmRelease: kube-system/nvidia-device-plugin ServiceAccount: kube-system/nvidia-device-plugin-service-account
@@ -0,0 +1,11 @@
+---
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+ name: nvidia-device-plugin-service-account
+ namespace: kube-system
+ labels:
+ app.kubernetes.io/name: nvidia-device-plugin
+ app.kubernetes.io/instance: nvidia-device-plugin
+ app.kubernetes.io/managed-by: Helm
+
--- HelmRelease: kube-system/nvidia-device-plugin ClusterRole: kube-system/nvidia-device-plugin-role
+++ HelmRelease: kube-system/nvidia-device-plugin ClusterRole: kube-system/nvidia-device-plugin-role
@@ -0,0 +1,35 @@
+---
+apiVersion: rbac.authorization.k8s.io/v1
+kind: ClusterRole
+metadata:
+ name: nvidia-device-plugin-role
+ labels:
+ app.kubernetes.io/name: nvidia-device-plugin
+ app.kubernetes.io/instance: nvidia-device-plugin
+ app.kubernetes.io/managed-by: Helm
+rules:
+- apiGroups:
+ - ''
+ resources:
+ - nodes
+ verbs:
+ - get
+ - list
+ - watch
+- apiGroups:
+ - nfd.k8s-sigs.io
+ resources:
+ - nodefeatures
+ verbs:
+ - get
+ - list
+ - watch
+ - create
+ - update
+- apiGroups:
+ - ''
+ resources:
+ - pods
+ verbs:
+ - get
+
--- HelmRelease: kube-system/nvidia-device-plugin ClusterRoleBinding: kube-system/nvidia-device-plugin-role-binding
+++ HelmRelease: kube-system/nvidia-device-plugin ClusterRoleBinding: kube-system/nvidia-device-plugin-role-binding
@@ -0,0 +1,18 @@
+---
+apiVersion: rbac.authorization.k8s.io/v1
+kind: ClusterRoleBinding
+metadata:
+ name: nvidia-device-plugin-role-binding
+ labels:
+ app.kubernetes.io/name: nvidia-device-plugin
+ app.kubernetes.io/instance: nvidia-device-plugin
+ app.kubernetes.io/managed-by: Helm
+subjects:
+- kind: ServiceAccount
+ name: nvidia-device-plugin-service-account
+ namespace: kube-system
+roleRef:
+ kind: ClusterRole
+ name: nvidia-device-plugin-role
+ apiGroup: rbac.authorization.k8s.io
+ |
Contributor
--- kubernetes/apps/kube-system/nvidia-device-plugin/app Kustomization: flux-system/cluster-apps-nvidia-device-plugin HelmRelease: kube-system/nvidia-device-plugin
+++ kubernetes/apps/kube-system/nvidia-device-plugin/app Kustomization: flux-system/cluster-apps-nvidia-device-plugin HelmRelease: kube-system/nvidia-device-plugin
@@ -12,13 +12,13 @@
spec:
chart: nvidia-device-plugin
sourceRef:
kind: HelmRepository
name: nvidia
namespace: flux-system
- version: 0.18.2
+ version: 0.19.1
install:
remediation:
retries: 3
interval: 30m
maxHistory: 2
uninstall: |
13acecf to
9e4290e
Compare
Contributor
|
User renovate[bot] does not have write permissions |
9e4290e to
ed9bbfd
Compare
Contributor
|
User renovate[bot] does not have write permissions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.18.2→0.19.1Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
NVIDIA/k8s-device-plugin (nvidia-device-plugin)
v0.19.1Compare Source
What's Changed
Full Changelog: NVIDIA/k8s-device-plugin@v0.19.0...v0.19.1
v0.19.0Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.