Image Pull Policy - CI/CD用語集の定義
image pull policy は、runtime が cache のコピーを使うのではなくイメージを取得するタイミングを制御します。Kubernetes では値は Always、IfNotPresent、Never です。
image pull policy は、runtime が cache のコピーを使うのではなくイメージを取得するタイミングを制御します。Kubernetes では値は Always、IfNotPresent、Never です。
image pull policy は、runtime が cache のコピーを使うのではなくイメージを取得するタイミングを制御します。Kubernetes では値は Always、IfNotPresent、Never です。
落とし穴
latest のような可変 tag の場合、IfNotPresent は古い cache のイメージを実行してしまうことがあります。digest で固定するか Always を使うと、deployment での予期しないバージョンのずれを避けられます。
関連ガイド
Image Tag - CI/CD Glossary DefinitionImage Tag: An image tag is a human-readable label attached to an image in a repository (for example `myapp:1.…
Image Digest - CI/CD Glossary DefinitionImage Digest: An image digest is the SHA-256 content hash that uniquely and immutably identifies an image (fo…
Pod - CI/CD Glossary DefinitionPod: A Pod is the smallest deployable unit in Kubernetes: one or more containers that share a network namespa…
Image Registry - CI/CD Glossary DefinitionImage Registry: An image registry is a service that stores and distributes container images (Docker Hub, GitH…