Image Pull Secret とは?
image pull secret は、プライベートな container registry から image を pull するのに必要なユーザー名、パスワード、またはトークンを保存します。pod または service account がそれを参照することで、node は image を取得する際に認証できます。これがないと、保護された registry からの pull は認可エラーで失敗します。
なぜ重要か
image をプライベートな registry へ push する CI pipeline では、クラスターがそれらを deploy できるように対応する pull secret が必要です。pull secret が欠けていたり期限切れだったりすることは、pod が起動できずに止まる一般的な原因です。
関連ガイド
What Is a Registry Mirror?A registry mirror is a local copy of an upstream container registry that serves image pulls faster and reduce…
What Is a Pull-Through Cache?A pull-through cache is a registry that fetches an image from upstream on the first request, stores it, and s…
What Is a Content Trust Policy?A content trust policy requires container images to be cryptographically signed and verified before they may…