Init Container - CI/CD用語集の定義
init container は、アプリのコンテナが起動する前に完了まで実行される Kubernetes Pod 内のコンテナです。init container は順番に実行され、セットアップ、migration、依存関係の待機に使われます。
init container は、アプリのコンテナが起動する前に完了まで実行される Kubernetes Pod 内のコンテナです。init container は順番に実行され、セットアップ、migration、依存関係の待機に使われます。
init container は、アプリのコンテナが起動する前に完了まで実行される Kubernetes Pod 内のコンテナです。init container は順番に実行され、セットアップ、migration、依存関係の待機に使われます。
一般的な用途
init container は、データベースの migration の実行、config の取得、依存関係に到達可能になるまでのブロックなどによく使われ、メインのコンテナが正常な既知の状態で起動できるようにします。
関連ガイド
Pod - CI/CD Glossary DefinitionPod: A Pod is the smallest deployable unit in Kubernetes: one or more containers that share a network namespa…
Ephemeral Container - CI/CD Glossary DefinitionEphemeral Container: An ephemeral container is a temporary container added to a running Kubernetes Pod for de…
Image Pull Policy - CI/CD Glossary DefinitionImage Pull Policy: An image pull policy controls when a runtime fetches an image versus using a cached copy.…
Container Runtime - CI/CD Glossary DefinitionContainer Runtime: A container runtime is the software that creates and runs containers from images, managing…