lxcfs-initializer
lxcfs-initializer copied to clipboard
Kubernetes Initializer example to support LXCFS - https://yq.aliyun.com/articles/566208
If lxcfs crash and restart, can remount automaticly?
``` spec: ... template: ... spec: ... containers: - name: lxcfs image: registry.cn-hangzhou.aliyuncs.com/denverdino/lxcfs:3.0.4 imagePullPolicy: IfNotPresent securityContext: privileged: true capabilities: add: - SYS_ADMIN lifecycle: postStart: exec: command: - /bin/sh - /usr/local/bin/container_remount_lxcfs.sh...