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