Skip to content

Commit

Permalink
Add missing manifest
Browse files Browse the repository at this point in the history
Signed-off-by: Jordi Deu-Pons <[email protected]>
  • Loading branch information
jordeu committed Oct 9, 2023
1 parent ed2ab0f commit 65d0c56
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.idea/
k8s-fuse-plugin*
k8s-fuse-plugin-linux*
33 changes: 33 additions & 0 deletions manifests/k8s-fuse-plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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: cr.seqera.io/public/k8s-fuse-plugin:0.1
args:
- "--mounts-allowed=5000"
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

0 comments on commit 65d0c56

Please sign in to comment.