/* Copyright 2019 The Kruise 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 containerized import ( "context" "encoding/json" "net/http" "k8s.io/klog" "k8s.io/utils/pointer" "sigs.k8s.io/controller-runtime/pkg/client" logf "sigs.k8s.io/controller-runtime/pkg/log" "sigs.k8s.io/controller-runtime/pkg/runtime/inject" "sigs.k8s.io/controller-runtime/pkg/webhook/admission" "github.com/cloud-native-application/rudrx/api/v1alpha1" util "github.com/cloud-native-application/rudrx/pkg/utils" ) // ContainerizedMutatingHandler handles Containerized workload type ContainerizedMutatingHandler struct { Client client.Client // Decoder decodes objects Decoder *admission.Decoder } // log is for logging in this package. var mutatelog = logf.Log.WithName("Containerized-mutate") var _ admission.Handler = &ContainerizedMutatingHandler{} // Handle handles admission requests. func (h *ContainerizedMutatingHandler) Handle(ctx context.Context, req admission.Request) admission.Response { obj := &v1alpha1.Containerized{} err := h.Decoder.Decode(req, obj) if err != nil { return admission.Errored(http.StatusBadRequest, err) } Default(obj) marshalled, err := json.Marshal(obj) if err != nil { return admission.Errored(http.StatusInternalServerError, err) } resp := admission.PatchResponseFromRaw(req.AdmissionRequest.Object.Raw, marshalled) if len(resp.Patches) > 0 { klog.V(5).Infof("Admit Containerized %s/%s patches: %v", obj.Namespace, obj.Name, util.DumpJSON(resp.Patches)) } return resp } // Default sets all the default value for the Containerized func Default(obj *v1alpha1.Containerized) { mutatelog.Info("default", "name", obj.Name) if obj.Spec.Replicas == nil { mutatelog.Info("default replicas as 1") obj.Spec.Replicas = pointer.Int32Ptr(1) } } var _ inject.Client = &ContainerizedMutatingHandler{} // InjectClient injects the client into the ContainerizedMutatingHandler func (h *ContainerizedMutatingHandler) InjectClient(c client.Client) error { h.Client = c return nil } var _ admission.DecoderInjector = &ContainerizedMutatingHandler{} // InjectDecoder injects the decoder into the ContainerizedMutatingHandler func (h *ContainerizedMutatingHandler) InjectDecoder(d *admission.Decoder) error { h.Decoder = d return nil }