분류 전체보기(702)
-
Minikube NFS 연동시, Minkube에서 Permission denied 오류
Minikube VM: NFS Client - hostPath - PV - PVc - PodLocal 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)
2025.01.01 -
Error response from daemon: error while creating mount source path '/mnt/registry': mkdir /mnt/registry: permission denied
minikube sshdocker\@minikube:\~\$ whoamidockersudo chown -R root\:root /mnt/registrychown: cannot access '/mnt/registry': Permission deniedchown -R root\:root /mnt/registrychown: changing ownership of '/mnt/registry': Operation not permittedregistry는 root로 작동이되는데, /mnt가 docker:docker로 설정되어 있는 경우 권한 문제가 발생함hostPath는 OS의 권한에 영향을 받기 때문에, Kubernets에서 관리되는 PVC를 사용하는 것이 정신건강에 좋을듯ASIS volumes: ..
2025.01.01 -
ERROR: unable to select packages
에러1.162 + apk add --no-cache 'openjdk17=17.0.10_p7-r0'1.167 fetch https://dl-cdn.alpinelinux.org/alpine/v3.19/main/x86_64/APKINDEX.tar.gz1.272 fetch https://dl-cdn.alpinelinux.org/alpine/v3.19/community/x86_64/APKINDEX.tar.gz1.652 ERROR: unable to select packages:1.654 openjdk17-17.0.13_p11-r0:1.654 breaks: world[openjdk17=17.0.10_p7-r0]원인openjdk17=17.0.10_p7-r0가 존재하지 않음조치https://pkgs.alpi..
2025.01.01 -
The StatefulSet "registry" is invalid: spec: Forbidden: updates to statefulset spec for fields other than 'replicas', 'ordinals', 'template', 'updateStrategy', 'persistentVolumeClaimRetentionPolicy' and 'minReadySeconds' are forbidden
StatefulSets은 수정이 허락되지 않음지우고 새로 생성해야 함kubectl get statefulset -Akubectl delete statefulset/registry -n registry
2025.01.01 -
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