Minikube NFS 연동시, Minkube에서 Permission denied 오류
2025. 1. 1. 14:21ㆍk8s
Minikube VM: NFS Client - hostPath - PV - PVc - Pod
Local Server: NFS
만약 NFS 연동하는 디렉토리의 소유가 root:root인 경우, Minikube에서 root임에도 불구하고 파일 조작이 안되는 경우
'root_squash' 옵션 때문임
아래 처럼 'no_root_squash'로 해줘야 권한 문제 해결됨
sudo vi /etc/exports
/nfs/temp {IP 대역}(rw,sync,no_subtree_check,no_root_squash)