Since Kubernetes v1.14 it's possible to use "local" volumes: https://kubernetes.io/docs/concepts/storage/volumes/#local This is currently not possible in typhoon, because of this: https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner/blob/master/docs/faqs.md#volume-does-not-exist-with-containerized-kubelet It would work when one add the following (as an example) lines here: https://github.com/poseidon/typhoon/blob/master/bare-metal/container-linux/kubernetes/cl/worker.yaml#L78 ```yaml --volume mntdisks,kind=host,source=/mnt \ --mount volume=mntdisks,target=/mnt \ ``` And then it would be possible to mount disks at "/mnt/*" Thoughts?
Since Kubernetes v1.14 it's possible to use "local" volumes:
https://kubernetes.io/docs/concepts/storage/volumes/#local
This is currently not possible in typhoon, because of this:
https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner/blob/master/docs/faqs.md#volume-does-not-exist-with-containerized-kubelet
It would work when one add the following (as an example) lines here:
https://github.com/poseidon/typhoon/blob/master/bare-metal/container-linux/kubernetes/cl/worker.yaml#L78
And then it would be possible to mount disks at "/mnt/*"
Thoughts?