33 lines
822 B
YAML
33 lines
822 B
YAML
{{- if .Values.fuseDevicePlugin.enabled }}
|
|
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: fuse-device-plugin
|
|
namespace: kube-system
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
name: fuse-device-plugin
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: fuse-device-plugin
|
|
spec:
|
|
hostNetwork: true
|
|
containers:
|
|
- image: public.ecr.aws/zero-downtime/fuse-device-plugin:v1.0-r1
|
|
# imagePullPolicy: Always
|
|
name: fuse-device-plugin
|
|
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
|
|
{{- end }}
|