Skip to content

Commit 0970216

Browse files
author
Kubernetes Submit Queue
authored
Merge pull request #46264 from Q-Lee/annotate
Automatic merge from submit-queue (batch tested with PRs 46681, 46786, 46264, 46680, 46805) Add annotation for image policy webhook fail open. **What this PR does / why we need it**: there's no good way to audit log if binary verification fails open. Adding an annotation can solve that, and provide a useful tool to audit [non-malicious] containers. **Release note**: add the annotation "alpha.image-policy.k8s.io/failed-open=true" to pods created when the image policy webhook fails open. ```release-note Add the `alpha.image-policy.k8s.io/failed-open=true` annotation when the image policy webhook encounters an error and fails open. ```
2 parents 54994b1 + a38c2b4 commit 0970216

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

pkg/api/annotation_key_constants.go

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ limitations under the License.
1919
package api
2020

2121
const (
22+
// ImagePolicyFailedOpenKey is added to pods created by failing open when the image policy
23+
// webhook backend fails.
24+
ImagePolicyFailedOpenKey string = "alpha.image-policy.k8s.io/failed-open"
25+
2226
// MirrorAnnotationKey represents the annotation key set by kubelets when creating mirror pods
2327
MirrorPodAnnotationKey string = "kubernetes.io/config.mirror"
2428

pkg/api/v1/annotation_key_constants.go

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ limitations under the License.
1919
package v1
2020

2121
const (
22+
// ImagePolicyFailedOpenKey is added to pods created by failing open when the image policy
23+
// webhook backend fails.
24+
ImagePolicyFailedOpenKey string = "alpha.image-policy.k8s.io/failed-open"
25+
2226
// MirrorAnnotationKey represents the annotation key set by kubelets when creating mirror pods
2327
MirrorPodAnnotationKey string = "kubernetes.io/config.mirror"
2428

plugin/pkg/admission/imagepolicy/admission.go

+12-6
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,16 @@ func (a *imagePolicyWebhook) filterAnnotations(allAnnotations map[string]string)
8989
}
9090

9191
// Function to call on webhook failure; behavior determined by defaultAllow flag
92-
func (a *imagePolicyWebhook) webhookError(attributes admission.Attributes, err error) error {
92+
func (a *imagePolicyWebhook) webhookError(pod *api.Pod, attributes admission.Attributes, err error) error {
9393
if err != nil {
9494
glog.V(2).Infof("error contacting webhook backend: %s", err)
9595
if a.defaultAllow {
96+
annotations := pod.GetAnnotations()
97+
if annotations == nil {
98+
annotations = make(map[string]string)
99+
}
100+
annotations[api.ImagePolicyFailedOpenKey] = "true"
101+
pod.ObjectMeta.SetAnnotations(annotations)
96102
glog.V(2).Infof("resource allowed in spite of webhook backend failure")
97103
return nil
98104
}
@@ -134,13 +140,13 @@ func (a *imagePolicyWebhook) Admit(attributes admission.Attributes) (err error)
134140
Namespace: attributes.GetNamespace(),
135141
},
136142
}
137-
if err := a.admitPod(attributes, &imageReview); err != nil {
143+
if err := a.admitPod(pod, attributes, &imageReview); err != nil {
138144
return admission.NewForbidden(attributes, err)
139145
}
140146
return nil
141147
}
142148

143-
func (a *imagePolicyWebhook) admitPod(attributes admission.Attributes, review *v1alpha1.ImageReview) error {
149+
func (a *imagePolicyWebhook) admitPod(pod *api.Pod, attributes admission.Attributes, review *v1alpha1.ImageReview) error {
144150
cacheKey, err := json.Marshal(review.Spec)
145151
if err != nil {
146152
return err
@@ -153,15 +159,15 @@ func (a *imagePolicyWebhook) admitPod(attributes admission.Attributes, review *v
153159
})
154160

155161
if err := result.Error(); err != nil {
156-
return a.webhookError(attributes, err)
162+
return a.webhookError(pod, attributes, err)
157163
}
158164
var statusCode int
159165
if result.StatusCode(&statusCode); statusCode < 200 || statusCode >= 300 {
160-
return a.webhookError(attributes, fmt.Errorf("Error contacting webhook: %d", statusCode))
166+
return a.webhookError(pod, attributes, fmt.Errorf("Error contacting webhook: %d", statusCode))
161167
}
162168

163169
if err := result.Into(review); err != nil {
164-
return a.webhookError(attributes, err)
170+
return a.webhookError(pod, attributes, err)
165171
}
166172

167173
a.responseCache.Add(string(cacheKey), review.Status, a.statusTTL(review.Status))

staging/src/k8s.io/client-go/pkg/api/annotation_key_constants.go

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ limitations under the License.
1919
package api
2020

2121
const (
22+
// ImagePolicyFailedOpenKey is added to pods created by failing open when the image policy
23+
// webhook backend fails.
24+
ImagePolicyFailedOpenKey string = "alpha.image-policy.k8s.io/failed-open"
25+
2226
// MirrorAnnotationKey represents the annotation key set by kubelets when creating mirror pods
2327
MirrorPodAnnotationKey string = "kubernetes.io/config.mirror"
2428

staging/src/k8s.io/client-go/pkg/api/v1/annotation_key_constants.go

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ limitations under the License.
1919
package v1
2020

2121
const (
22+
// ImagePolicyFailedOpenKey is added to pods created by failing open when the image policy
23+
// webhook backend fails.
24+
ImagePolicyFailedOpenKey string = "alpha.image-policy.k8s.io/failed-open"
25+
2226
// MirrorAnnotationKey represents the annotation key set by kubelets when creating mirror pods
2327
MirrorPodAnnotationKey string = "kubernetes.io/config.mirror"
2428

0 commit comments

Comments
 (0)