Admission Controller - CI/CD用語集の定義
admission controller は、認証後かつオブジェクトが永続化される前に Kubernetes API server へのリクエストをインターセプトし、それらを検証または変更できます。OPA Gatekeeper や Kyverno のようなポリシーエンジンは admission webhook として動作します。
CIでは
admission ポリシーがデプロイを拒否すると失敗することがあります。例えば「イメージが許可された registry からではない」や「resource limit が欠けている」などです。エラーは実行中の pod からではなく kubectl apply から返ってきます。
関連ガイド
Custom Resource Definition (CRD) - CI/CD Glossary DefinitionCustom Resource Definition (CRD): A custom resource definition extends the Kubernetes API with a new object t…
Operator Pattern - CI/CD Glossary DefinitionOperator Pattern: The operator pattern packages operational knowledge for an application into a controller th…
Control Plane - CI/CD Glossary DefinitionControl Plane: The control plane is the set of Kubernetes components that make global decisions about the clu…