본문 바로가기
Compute/Openstack

[단편지식] kubernetes ImagePullBackOff 의 정의

by 조청유곽 2024. 1. 16.
반응형

Kubernetes ImagePullBackOff 오류는 Kubernetes가 지정된 컨테이너 이미지를 성공적으로 가져올 수 없을 때 발생하는 상태이다. Kubernetes가 컨테이너에 대한 이미지를 가져올 수 없는 경우 컨테이너는 대기 상태에 갇히게 된다.

 

출처 : https://www.groundcover.com/kubernetes-troubleshooting/imagepullbackoff

 

Demystifying Kubernetes ImagePullBackOff. Learn its role in managing container images and troubleshooting registry issues.

The Kubernetes ecosystem is filled with terminology that can sound arcane to the uninitiated. The good news, though, is that the terms are pretty easy to understand once you have insight into the concepts behind them. Case in point: Kubernetes ImagePullBac

www.groundcover.com

 

Kubernetes가 이미지를 가져오지 못하는 이유로는!

 

1. 이미지가 레지스트리에 존재하지 않는 경우

2. 컨테이너 또는 POD 구성에서 정의한 이미지 이름 또는 이미지 태그에 오타가 있을 경우

3. 네트워크 문제로 kubernetes가 컨테이너 이미지 레지스트리에 연결할 수 없는 경우

등등

 

ErrImagePull 과 ImagePullBackOff의 차이

ErrImagePull이 Kubernetes는 처음 이미지 가져오기에서 실패할 때 발생하는 오류 이벤트이다.

그 후 kubernetes가 점점 더 긴 시간 간격으로 이미지를 가져오려고 다시 시도할 때 ImagePullBackOff 이벤트가 기록된다.

즉 둘 사이의 차이점은 ErrImagePull이 실패 자체를 알리는 반면 ImagePullBackOff는 kubernetes가 이미지를 다시 가져오려고 시도했음을 나타내는 상태이다.

 

 

 

 

📌 무쓸모 잡템 소개 | 기어가는 짱구 피규어 / 자전거 타는 짱구 피규어 

https://link.coupang.com/a/bm8h2d
"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."

 

반응형