MountVolume.SetUp failed for volume “mongo” : hostPath type check failed: /mongo/data is not a directory

后端 未结 4 1939
温柔的废话
温柔的废话 2021-01-18 23:57

I\'m trying to configure a hostPath to launch Mongodb pod.

I have only one node of kubernetes v1.8.5 installed with rancher last stable version.

I have creat

4条回答
  •  死守一世寂寞
    2021-01-19 00:20

    If by any chance you are using minikube, then don't forget that minikube itself is a container. So hostPath points to a path in that container, not to a path on your host machine. You have to mount your PC path into the minikube container and then into the POD.

    Example: minikube start --mount --mount-string="/host/path:/minikubeContainer/path"

提交回复
热议问题