전체 글(746)
-
FailedToRetrieveImagePullSecret
Warning FailedToRetrieveImagePullSecret pod/registry-0 Unable to retrieve some image pull secrets (registry); attempting to pull the image may not succeed.registry라는 secret이 없어서 오류 발생현재 registry가 인증정보를 사용하면 secret을 생성해야 하고, 인증정보를 사용하지 않으면, yml에서 아래 구문을 제거하면 됨 imagePullSecrets: - name: registry해당 pod를 delete 해야 함kubectl delete registry-0 -n registry
2024.12.31 -
Docker Volume Mount와 NFS Mount의 차이점 2024.12.31
-
Ubuntu rm: cannot remove '{디렉토리}': Is a directory
해당 디렉토리가 마운트되어 있는 경우# 확인mount | grep {디렉토리}# unmountsudo umount {디렉토리}# 디렉토리 삭제rm -rf {디렉토리}
2024.12.31 -
Ubuntu exportfs 명령어 옵션 2024.12.31
-
Ubuntu NFS mount
Server# 모듈 설치sudo apt updatesudo apt install nfs-kernel-server -y# 디렉토리 생성sudo mkdir -p /nfs/tempsudo chown -R test:test /nfs/tempsudo chmod -R 770 /nfs/temp# NFS 설정파일 수정 및 적용sudo vi /etc/exports--------------/nfs/temp {IP 대역}(rw,sync,no_subtree_check,no_root_squash) {IP 대역}(rw,sync,no_subtree_check,no_root_squash)--------------sudo exportfs -a# 확인sudo exportfs -v# 서비스 재시작 및 확인sudo systemctl res..
2024.12.31 -
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