feat(helm): update nvidia-device-plugin ( 0.14.5 → 0.19.3 )#272
Open
parsec-renovate[bot] wants to merge 1 commit into
Open
feat(helm): update nvidia-device-plugin ( 0.14.5 → 0.19.3 )#272parsec-renovate[bot] wants to merge 1 commit into
parsec-renovate[bot] wants to merge 1 commit into
Conversation
--- 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
@@ -13,13 +13,13 @@
chart: nvidia-device-plugin
interval: 15m
sourceRef:
kind: HelmRepository
name: nvidia-dvp
namespace: flux-system
- version: 0.14.5
+ version: 0.17.0
install:
createNamespace: true
remediation:
retries: 3
interval: 15m
maxHistory: 2 |
--- HelmRelease: kube-system/nvidia-device-plugin DaemonSet: kube-system/nvidia-device-plugin
+++ HelmRelease: kube-system/nvidia-device-plugin DaemonSet: kube-system/nvidia-device-plugin
@@ -44,13 +44,13 @@
value: nvidia.com/device-plugin.config
- name: CONFIG_FILE_SRCDIR
value: /available-configs
- name: CONFIG_FILE_DST
value: /config/config.yaml
- name: DEFAULT_CONFIG
- value: ''
+ value: null
- name: FALLBACK_STRATEGIES
value: named,single
- name: SEND_SIGNAL
value: 'false'
- name: SIGNAL
value: ''
@@ -79,13 +79,13 @@
value: nvidia.com/device-plugin.config
- name: CONFIG_FILE_SRCDIR
value: /available-configs
- name: CONFIG_FILE_DST
value: /config/config.yaml
- name: DEFAULT_CONFIG
- value: ''
+ value: null
- name: FALLBACK_STRATEGIES
value: named,single
- name: SEND_SIGNAL
value: 'true'
- name: SIGNAL
value: '1'
@@ -100,39 +100,83 @@
capabilities:
add:
- SYS_ADMIN
- image: nvcr.io/nvidia/k8s-device-plugin:v0.14.5
imagePullPolicy: IfNotPresent
name: nvidia-device-plugin-ctr
+ command:
+ - nvidia-device-plugin
env:
+ - name: MPS_ROOT
+ value: /run/nvidia/mps
- name: CONFIG_FILE
value: /config/config.yaml
- name: NVIDIA_MIG_MONITOR_DEVICES
value: all
+ - name: NVIDIA_VISIBLE_DEVICES
+ value: all
+ - name: NVIDIA_DRIVER_CAPABILITIES
+ value: compute,utility
securityContext:
capabilities:
add:
- SYS_ADMIN
volumeMounts:
- name: device-plugin
mountPath: /var/lib/kubelet/device-plugins
+ - name: mps-shm
+ mountPath: /dev/shm
+ - name: mps-root
+ mountPath: /mps
+ - name: cdi-root
+ mountPath: /var/run/cdi
- name: available-configs
mountPath: /available-configs
- name: config
mountPath: /config
volumes:
- name: device-plugin
hostPath:
path: /var/lib/kubelet/device-plugins
+ - name: mps-root
+ hostPath:
+ path: /run/nvidia/mps
+ type: DirectoryOrCreate
+ - name: mps-shm
+ hostPath:
+ path: /run/nvidia/mps/shm
+ - name: cdi-root
+ hostPath:
+ path: /var/run/cdi
+ type: DirectoryOrCreate
- name: available-configs
configMap:
name: nvidia-device-plugin-configs
- name: config
emptyDir: {}
nodeSelector:
nvidia.feature.node.kubernetes.io/gpu: 'true'
+ affinity:
+ nodeAffinity:
+ requiredDuringSchedulingIgnoredDuringExecution:
+ nodeSelectorTerms:
+ - matchExpressions:
+ - key: feature.node.kubernetes.io/pci-10de.present
+ operator: In
+ values:
+ - 'true'
+ - matchExpressions:
+ - key: feature.node.kubernetes.io/cpu-model.vendor_id
+ operator: In
+ values:
+ - NVIDIA
+ - matchExpressions:
+ - key: nvidia.com/gpu.present
+ operator: In
+ values:
+ - 'true'
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- effect: NoSchedule
key: nvidia.com/gpu
operator: Exists
--- 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
@@ -0,0 +1,181 @@
+---
+apiVersion: apps/v1
+kind: DaemonSet
+metadata:
+ name: nvidia-device-plugin-mps-control-daemon
+ namespace: kube-system
+ labels:
+ app.kubernetes.io/name: nvidia-device-plugin
+ app.kubernetes.io/instance: nvidia-device-plugin
+ app.kubernetes.io/managed-by: Helm
+spec:
+ selector:
+ matchLabels:
+ app.kubernetes.io/name: nvidia-device-plugin
+ app.kubernetes.io/instance: nvidia-device-plugin
+ updateStrategy:
+ type: RollingUpdate
+ template:
+ metadata:
+ labels:
+ app.kubernetes.io/name: nvidia-device-plugin
+ app.kubernetes.io/instance: nvidia-device-plugin
+ spec:
+ priorityClassName: system-node-critical
+ runtimeClassName: nvidia
+ securityContext: {}
+ serviceAccountName: nvidia-device-plugin-service-account
+ shareProcessNamespace: true
+ initContainers:
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.14.5
+ name: mps-control-daemon-mounts
+ command:
+ - mps-control-daemon
+ - mount-shm
+ securityContext:
+ privileged: true
+ volumeMounts:
+ - name: mps-root
+ mountPath: /mps
+ mountPropagation: Bidirectional
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.14.5
+ name: mps-control-daemon-init
+ command:
+ - config-manager
+ env:
+ - name: ONESHOT
+ value: 'true'
+ - name: KUBECONFIG
+ value: ''
+ - name: NODE_NAME
+ valueFrom:
+ fieldRef:
+ fieldPath: spec.nodeName
+ - name: NODE_LABEL
+ value: nvidia.com/device-plugin.config
+ - name: CONFIG_FILE_SRCDIR
+ value: /available-configs
+ - name: CONFIG_FILE_DST
+ value: /config/config.yaml
+ - name: DEFAULT_CONFIG
+ value: null
+ - name: FALLBACK_STRATEGIES
+ value: named,single
+ - name: SEND_SIGNAL
+ value: 'false'
+ - name: SIGNAL
+ value: ''
+ - name: PROCESS_TO_SIGNAL
+ value: ''
+ volumeMounts:
+ - name: available-configs
+ mountPath: /available-configs
+ - name: config
+ mountPath: /config
+ containers:
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.14.5
+ name: mps-control-daemon-sidecar
+ command:
+ - config-manager
+ env:
+ - name: ONESHOT
+ value: 'false'
+ - name: KUBECONFIG
+ value: ''
+ - name: NODE_NAME
+ valueFrom:
+ fieldRef:
+ fieldPath: spec.nodeName
+ - name: NODE_LABEL
+ value: nvidia.com/device-plugin.config
+ - name: CONFIG_FILE_SRCDIR
+ value: /available-configs
+ - name: CONFIG_FILE_DST
+ value: /config/config.yaml
+ - name: DEFAULT_CONFIG
+ value: null
+ - name: FALLBACK_STRATEGIES
+ value: named,single
+ - name: SEND_SIGNAL
+ value: 'true'
+ - name: SIGNAL
+ value: '1'
+ - name: PROCESS_TO_SIGNAL
+ value: /usr/bin/mps-control-daemon
+ volumeMounts:
+ - name: available-configs
+ mountPath: /available-configs
+ - name: config
+ mountPath: /config
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.14.5
+ imagePullPolicy: IfNotPresent
+ name: mps-control-daemon-ctr
+ command:
+ - mps-control-daemon
+ env:
+ - name: NODE_NAME
+ valueFrom:
+ fieldRef:
+ apiVersion: v1
+ fieldPath: spec.nodeName
+ - name: CONFIG_FILE
+ value: /config/config.yaml
+ - name: NVIDIA_MIG_MONITOR_DEVICES
+ value: all
+ - name: NVIDIA_VISIBLE_DEVICES
+ value: all
+ - name: NVIDIA_DRIVER_CAPABILITIES
+ value: compute,utility
+ securityContext:
+ privileged: true
+ volumeMounts:
+ - name: mps-shm
+ mountPath: /dev/shm
+ - name: mps-root
+ mountPath: /mps
+ - name: available-configs
+ mountPath: /available-configs
+ - name: config
+ mountPath: /config
+ volumes:
+ - name: mps-root
+ hostPath:
+ path: /run/nvidia/mps
+ type: DirectoryOrCreate
+ - name: mps-shm
+ hostPath:
+ path: /run/nvidia/mps/shm
+ - name: available-configs
+ configMap:
+ name: nvidia-device-plugin-configs
+ - name: config
+ emptyDir: {}
+ nodeSelector:
+ nvidia.com/mps.capable: 'true'
+ nvidia.feature.node.kubernetes.io/gpu: 'true'
+ affinity:
+ nodeAffinity:
+ requiredDuringSchedulingIgnoredDuringExecution:
+ nodeSelectorTerms:
+ - matchExpressions:
+ - key: feature.node.kubernetes.io/pci-10de.present
+ operator: In
+ values:
+ - 'true'
+ - matchExpressions:
+ - key: feature.node.kubernetes.io/cpu-model.vendor_id
+ operator: In
+ values:
+ - NVIDIA
+ - matchExpressions:
+ - key: nvidia.com/gpu.present
+ operator: In
+ values:
+ - 'true'
+ tolerations:
+ - key: CriticalAddonsOnly
+ operator: Exists
+ - effect: NoSchedule
+ key: nvidia.com/gpu
+ operator: Exists
+ |
910ffae to
40d8d5c
Compare
40d8d5c to
9cd6479
Compare
9cd6479 to
3bbdef4
Compare
3bbdef4 to
2640649
Compare
2640649 to
c0b5c49
Compare
c0b5c49 to
07d02d4
Compare
07d02d4 to
36bf808
Compare
36bf808 to
4b44b6d
Compare
049cf5a to
4b44b6d
Compare
4b44b6d to
7aff29b
Compare
7aff29b to
a483c98
Compare
a483c98 to
6726975
Compare
6726975 to
667860d
Compare
667860d to
1e3536e
Compare
1e3536e to
1dda1c8
Compare
1dda1c8 to
5169007
Compare
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.14.5→0.19.3Warning
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.3Compare Source
v0.19.2Compare Source
v0.19.1Compare Source
v0.19.0Compare Source
v0.18.2Compare Source
v0.18.1Compare Source
v0.18.0Compare Source
v0.17.4Compare Source
What's Changed
Full Changelog: NVIDIA/k8s-device-plugin@v0.17.3...v0.17.4
v0.17.3Compare Source
What's Changed
Full Changelog: NVIDIA/k8s-device-plugin@v0.17.2...v0.17.3
v0.17.2Compare Source
What's Changed
Full Changelog: NVIDIA/k8s-device-plugin@v0.17.1...v0.17.2
v0.17.1Compare Source
enable-cuda-compathooksada-lovelacearchitecture label for compute capability 8.9v0.17.0Compare Source
v0.16.2Compare Source
v0.16.1Compare Source
v0.16.0Compare Source
WithDialerwithWithContextDialerv0.15.1Compare Source
Changelog
hasConfigMaphelm template. This addresses cases where certain resources (roles and service accounts) would be created even if they were not required.v0.15.0Compare Source
nvidia-device-plugin.ymlstatic deployment at the root of the repository todeployments/static/nvidia-device-plugin.yml.Configuration
📅 Schedule: (in timezone America/New_York)
🚦 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 has been generated by Mend Renovate.