MOUNT(3)
-
Minikube mount
hostPath: path: /temp/test # Path in Minikube VM, not host filesystemhostPath의 path는 Minikube의 디렉토리임minikube sshcd /temp/testhost 서버와 Minikube를 연동하기# host 섭mkdir /temp/testminkube mount /temp/test:/temp/test마운트가 안되는 경우,Minikube가 unmount되어 있어야 함minikube sshsudo umount /temp/testexitMinikube 디렉토리안에 파일이 없어야 함minikube sshsudo rm -rf /temp/test/*exitminikube mount는 프로세스가 작동할때만 적용됨개발에서 사용하는 건 문제없지만..
2024.12.31 -
ConfigMap 마운트
ConfigMap을 이용해서 mount하는 경우, 실제 디렉토리에 존재하는 파일이 없어지지는 않음파일이 하나인 경우apiVersion: v1kind: ConfigMapmetadata: name: {config} namespace: {config}data: {file1}: | {내용}--- containers: - name: {pod} image: {image} ports: - containerPort: {port} volumeMounts: - name: {volume} mountPath: {directory}/{file1} # 특정 파일을 하나만 mount하는 경우, su..
2024.05.04 -
리눅스에 디스크 마운트하기
ntfs 마운트하기 # 마운트 대상 찾기 sudo fdisk -l # 마운트할 디렉토리 생성 sudo mkdir /mnt/usb1 # ntfs 마운트하기 sudo mount -t ntfs /dev/sdb1 /mnt/usb1 # 결과 확인 df -h 마운트가 안될 경우, # 에러 The disk contains an unclean file system (0, 0). Metadata kept in Windows cache, refused to mount. Falling back to read-only mount because the NTFS partition is in an unsafe state. Please resume and shutdown Windows fully (no hibernation or f..
2023.02.25