feat(helm): update chart nvidia-device-plugin ( 0.14.5 ➔ 0.19.0 )#68
Open
parsec-renovate[bot] wants to merge 1 commit intomainfrom
Open
feat(helm): update chart nvidia-device-plugin ( 0.14.5 ➔ 0.19.0 )#68parsec-renovate[bot] wants to merge 1 commit intomainfrom
parsec-renovate[bot] wants to merge 1 commit intomainfrom
Conversation
--- kubernetes/apps/kube-system/nvidia/device-plugin/app Kustomization: kube-system/nvidia-device-plugin HelmRelease: kube-system/nvidia-device-plugin
+++ kubernetes/apps/kube-system/nvidia/device-plugin/app Kustomization: kube-system/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.19.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,84 @@
capabilities:
add:
- SYS_ADMIN
- image: nvcr.io/nvidia/k8s-device-plugin:v0.17.1
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
+ - name: kubelet-device-plugins-dir
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
+ - name: kubelet-device-plugins-dir
hostPath:
path: /var/lib/kubelet/device-plugins
+ type: Directory
+ - 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
+ hostPID: true
+ initContainers:
+ - image: nvcr.io/nvidia/k8s-device-plugin:v0.17.1
+ 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.17.1
+ 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.17.1
+ 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.17.1
+ 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
+ |
200da91 to
154a81f
Compare
154a81f to
1b7d41a
Compare
1b7d41a to
e31c24b
Compare
e31c24b to
55d4dbb
Compare
55d4dbb to
1aa5cbd
Compare
1aa5cbd to
1bc3f91
Compare
1bc3f91 to
899d7db
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.0Warning
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.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: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 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 Renovate Bot.