Skip to content

Instantly share code, notes, and snippets.

@BhautikChudasama
Created November 26, 2025 04:23
Show Gist options
  • Select an option

  • Save BhautikChudasama/f6f140492a26c5861cf2158e6e33fe3c to your computer and use it in GitHub Desktop.

Select an option

Save BhautikChudasama/f6f140492a26c5861cf2158e6e33fe3c to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: fuse-device-plugin-daemonset
namespace: kube-system
spec:
selector:
matchLabels:
name: fuse-device-plugin-ds
template:
metadata:
labels:
name: fuse-device-plugin-ds
spec:
hostNetwork: true
containers:
- image: soolaugust/fuse-device-plugin:v1.0
name: fuse-device-plugin-ctr
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
volumeMounts:
- name: device-plugin
mountPath: /var/lib/kubelet/device-plugins
volumes:
- name: device-plugin
hostPath:
path: /var/lib/kubelet/device-plugins
imagePullSecrets:
- name: registry-secret
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment