├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── deployment ├── deployment.yaml ├── install.sh ├── lxcfs-daemonset.yaml ├── mutatingwebhook.yaml ├── service.yaml ├── uninstall.sh ├── validatingwebhook.yaml ├── web.yaml ├── webhook-create-signed-cert.sh └── webhook-patch-ca-bundle.sh ├── lxcfs-image ├── Dockerfile └── start.sh ├── lxcfs.go ├── lxcfs_test.go ├── main.go └── webhook.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/README.md -------------------------------------------------------------------------------- /deployment/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/deployment.yaml -------------------------------------------------------------------------------- /deployment/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/install.sh -------------------------------------------------------------------------------- /deployment/lxcfs-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/lxcfs-daemonset.yaml -------------------------------------------------------------------------------- /deployment/mutatingwebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/mutatingwebhook.yaml -------------------------------------------------------------------------------- /deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/service.yaml -------------------------------------------------------------------------------- /deployment/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/uninstall.sh -------------------------------------------------------------------------------- /deployment/validatingwebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/validatingwebhook.yaml -------------------------------------------------------------------------------- /deployment/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/web.yaml -------------------------------------------------------------------------------- /deployment/webhook-create-signed-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/webhook-create-signed-cert.sh -------------------------------------------------------------------------------- /deployment/webhook-patch-ca-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/deployment/webhook-patch-ca-bundle.sh -------------------------------------------------------------------------------- /lxcfs-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/lxcfs-image/Dockerfile -------------------------------------------------------------------------------- /lxcfs-image/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/lxcfs-image/start.sh -------------------------------------------------------------------------------- /lxcfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/lxcfs.go -------------------------------------------------------------------------------- /lxcfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/lxcfs_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/main.go -------------------------------------------------------------------------------- /webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/lxcfs-admission-webhook/HEAD/webhook.go --------------------------------------------------------------------------------