123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- 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 webhook
- import (
- "encoding/json"
- "k8s.io/api/admission/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/klog"
- )
- const (
- addFirstLabelPatch string = `[
- { "op": "add", "path": "/metadata/labels", "value": {"added-label": "yes"}}
- ]`
- addAdditionalLabelPatch string = `[
- { "op": "add", "path": "/metadata/labels/added-label", "value": "yes" }
- ]`
- updateLabelPatch string = `[
- { "op": "replace", "path": "/metadata/labels/added-label", "value": "yes" }
- ]`
- )
- // Add a label {"added-label": "yes"} to the object
- func addLabel(ar v1.AdmissionReview) *v1.AdmissionResponse {
- klog.V(2).Info("calling add-label")
- obj := struct {
- metav1.ObjectMeta `json:"metadata,omitempty"`
- }{}
- raw := ar.Request.Object.Raw
- err := json.Unmarshal(raw, &obj)
- if err != nil {
- klog.Error(err)
- return toV1AdmissionResponse(err)
- }
- reviewResponse := v1.AdmissionResponse{}
- reviewResponse.Allowed = true
- pt := v1.PatchTypeJSONPatch
- labelValue, hasLabel := obj.ObjectMeta.Labels["added-label"]
- switch {
- case len(obj.ObjectMeta.Labels) == 0:
- reviewResponse.Patch = []byte(addFirstLabelPatch)
- reviewResponse.PatchType = &pt
- case !hasLabel:
- reviewResponse.Patch = []byte(addAdditionalLabelPatch)
- reviewResponse.PatchType = &pt
- case labelValue != "yes":
- reviewResponse.Patch = []byte(updateLabelPatch)
- reviewResponse.PatchType = &pt
- default:
- // already set
- }
- return &reviewResponse
- }
|