Minikube mount
2024. 12. 31. 14:34ㆍk8s
hostPath:
path: /temp/test # Path in Minikube VM, not host filesystem
hostPath의 path는 Minikube의 디렉토리임
minikube ssh
cd /temp/test
host 서버와 Minikube를 연동하기
# host 섭
mkdir /temp/test
minkube mount /temp/test:/temp/test
마운트가 안되는 경우,
Minikube가 unmount되어 있어야 함
minikube ssh
sudo umount /temp/test
exit
Minikube 디렉토리안에 파일이 없어야 함
minikube ssh
sudo rm -rf /temp/test/*
exit
minikube mount는 프로세스가 작동할때만 적용됨
개발에서 사용하는 건 문제없지만, 운영에서는 NFS로 교체하는 것이 좋음
'k8s' 카테고리의 다른 글
FailedToRetrieveImagePullSecret (0) | 2024.12.31 |
---|---|
Docker Volume Mount와 NFS Mount의 차이점 (0) | 2024.12.31 |
Minikube host directory 마운트하기 (0) | 2024.12.31 |
docker registry 조회 명령 (0) | 2024.07.06 |
디버깅에 유용한 명령어 (0) | 2024.05.05 |