mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00
84 lines
2.3 KiB
Go
84 lines
2.3 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/runtime/inject"
|
|
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
|
|
"sigs.k8s.io/controller-runtime/pkg/webhook/admission/types"
|
|
)
|
|
|
|
// podAnnotator annotates Pods
|
|
type podAnnotator struct {
|
|
client client.Client
|
|
decoder types.Decoder
|
|
}
|
|
|
|
// Implement admission.Handler so the controller can handle admission request.
|
|
var _ admission.Handler = &podAnnotator{}
|
|
|
|
// podAnnotator adds an annotation to every incoming pods.
|
|
func (a *podAnnotator) Handle(ctx context.Context, req types.Request) types.Response {
|
|
pod := &corev1.Pod{}
|
|
|
|
err := a.decoder.Decode(req, pod)
|
|
if err != nil {
|
|
return admission.ErrorResponse(http.StatusBadRequest, err)
|
|
}
|
|
copy := pod.DeepCopy()
|
|
|
|
err = a.mutatePodsFn(ctx, copy)
|
|
if err != nil {
|
|
return admission.ErrorResponse(http.StatusInternalServerError, err)
|
|
}
|
|
return admission.PatchResponse(pod, copy)
|
|
}
|
|
|
|
// mutatePodsFn add an annotation to the given pod
|
|
func (a *podAnnotator) mutatePodsFn(ctx context.Context, pod *corev1.Pod) error {
|
|
if pod.Annotations == nil {
|
|
pod.Annotations = map[string]string{}
|
|
}
|
|
pod.Annotations["example-mutating-admission-webhook"] = "foo"
|
|
return nil
|
|
}
|
|
|
|
// podValidator implements inject.Client.
|
|
// A client will be automatically injected.
|
|
var _ inject.Client = &podValidator{}
|
|
|
|
// InjectClient injects the client.
|
|
func (v *podAnnotator) InjectClient(c client.Client) error {
|
|
v.client = c
|
|
return nil
|
|
}
|
|
|
|
// podValidator implements inject.Decoder.
|
|
// A decoder will be automatically injected.
|
|
var _ inject.Decoder = &podValidator{}
|
|
|
|
// InjectDecoder injects the decoder.
|
|
func (v *podAnnotator) InjectDecoder(d types.Decoder) error {
|
|
v.decoder = d
|
|
return nil
|
|
}
|