pkg/webhooks/admission/queues/mutate/mutate_queue.go (102 lines of code) (raw):

/* Copyright 2018 The Volcano 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 mutate import ( "encoding/json" "fmt" "strings" admissionv1 "k8s.io/api/admission/v1" whv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/klog" schedulingv1beta1 "volcano.sh/apis/pkg/apis/scheduling/v1beta1" "volcano.sh/volcano/pkg/webhooks/router" "volcano.sh/volcano/pkg/webhooks/schema" "volcano.sh/volcano/pkg/webhooks/util" ) func init() { router.RegisterAdmission(service) } var service = &router.AdmissionService{ Path: "/queues/mutate", Func: Queues, MutatingConfig: &whv1.MutatingWebhookConfiguration{ Webhooks: []whv1.MutatingWebhook{{ Name: "mutatequeue.volcano.sh", Rules: []whv1.RuleWithOperations{ { Operations: []whv1.OperationType{whv1.Create}, Rule: whv1.Rule{ APIGroups: []string{schedulingv1beta1.SchemeGroupVersion.Group}, APIVersions: []string{schedulingv1beta1.SchemeGroupVersion.Version}, Resources: []string{"queues"}, }, }, }, }}, }, } type patchOperation struct { Op string `json:"op"` Path string `json:"path"` Value interface{} `json:"value,omitempty"` } // Queues mutate queues. func Queues(ar admissionv1.AdmissionReview) *admissionv1.AdmissionResponse { klog.V(3).Infof("Mutating %s queue %s.", ar.Request.Operation, ar.Request.Name) queue, err := schema.DecodeQueue(ar.Request.Object, ar.Request.Resource) if err != nil { return util.ToAdmissionResponse(err) } var patchBytes []byte switch ar.Request.Operation { case admissionv1.Create: patchBytes, err = createQueuePatch(queue) default: return util.ToAdmissionResponse(fmt.Errorf("invalid operation `%s`, "+ "expect operation to be `CREATE`", ar.Request.Operation)) } if err != nil { return &admissionv1.AdmissionResponse{ Allowed: false, Result: &metav1.Status{Message: err.Error()}, } } pt := admissionv1.PatchTypeJSONPatch return &admissionv1.AdmissionResponse{ Allowed: true, Patch: patchBytes, PatchType: &pt, } } func createQueuePatch(queue *schedulingv1beta1.Queue) ([]byte, error) { var patch []patchOperation // add root node if the root node not specified hierarchy := queue.Annotations[schedulingv1beta1.KubeHierarchyAnnotationKey] hierarchicalWeights := queue.Annotations[schedulingv1beta1.KubeHierarchyWeightAnnotationKey] if hierarchy != "" && hierarchicalWeights != "" && !strings.HasPrefix(hierarchy, "root") { // based on https://tools.ietf.org/html/rfc6901#section-3 // escape "/" with "~1" patch = append(patch, patchOperation{ Op: "add", Path: fmt.Sprintf("/metadata/annotations/%s", strings.ReplaceAll(schedulingv1beta1.KubeHierarchyAnnotationKey, "/", "~1")), Value: fmt.Sprintf("root/%s", hierarchy), }) patch = append(patch, patchOperation{ Op: "add", Path: fmt.Sprintf("/metadata/annotations/%s", strings.ReplaceAll(schedulingv1beta1.KubeHierarchyWeightAnnotationKey, "/", "~1")), Value: fmt.Sprintf("1/%s", hierarchicalWeights), }) } trueValue := true if queue.Spec.Reclaimable == nil { patch = append(patch, patchOperation{ Op: "add", Path: "/spec/reclaimable", Value: &trueValue, }) } defaultWeight := 1 if queue.Spec.Weight == 0 { patch = append(patch, patchOperation{ Op: "add", Path: "/spec/weight", Value: &defaultWeight, }) } return json.Marshal(patch) }