123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /*
- 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 (
- "fmt"
- "strings"
- corev1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/api/admission/v1beta1"
- "k8s.io/klog"
- )
- const (
- podsInitContainerPatch string = `[
- {"op":"add","path":"/spec/initContainers","value":[{"image":"webhook-added-image","name":"webhook-added-init-container","resources":{}}]}
- ]`
- )
- // only allow pods to pull images from specific registry.
- func admitPods(ar v1beta1.AdmissionReview) *v1beta1.AdmissionResponse {
- klog.V(2).Info("admitting pods")
- podResource := metav1.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"}
- if ar.Request.Resource != podResource {
- err := fmt.Errorf("expect resource to be %s", podResource)
- klog.Error(err)
- return toAdmissionResponse(err)
- }
- raw := ar.Request.Object.Raw
- pod := corev1.Pod{}
- deserializer := codecs.UniversalDeserializer()
- if _, _, err := deserializer.Decode(raw, nil, &pod); err != nil {
- klog.Error(err)
- return toAdmissionResponse(err)
- }
- reviewResponse := v1beta1.AdmissionResponse{}
- reviewResponse.Allowed = true
- var msg string
- if v, ok := pod.Labels["webhook-e2e-test"]; ok {
- if v == "webhook-disallow" {
- reviewResponse.Allowed = false
- msg = msg + "the pod contains unwanted label; "
- }
- if v == "wait-forever" {
- reviewResponse.Allowed = false
- msg = msg + "the pod response should not be sent; "
- <-make(chan int) // Sleep forever - no one sends to this channel
- }
- }
- for _, container := range pod.Spec.Containers {
- if strings.Contains(container.Name, "webhook-disallow") {
- reviewResponse.Allowed = false
- msg = msg + "the pod contains unwanted container name; "
- }
- }
- if !reviewResponse.Allowed {
- reviewResponse.Result = &metav1.Status{Message: strings.TrimSpace(msg)}
- }
- return &reviewResponse
- }
- func mutatePods(ar v1beta1.AdmissionReview) *v1beta1.AdmissionResponse {
- klog.V(2).Info("mutating pods")
- podResource := metav1.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"}
- if ar.Request.Resource != podResource {
- klog.Errorf("expect resource to be %s", podResource)
- return nil
- }
- raw := ar.Request.Object.Raw
- pod := corev1.Pod{}
- deserializer := codecs.UniversalDeserializer()
- if _, _, err := deserializer.Decode(raw, nil, &pod); err != nil {
- klog.Error(err)
- return toAdmissionResponse(err)
- }
- reviewResponse := v1beta1.AdmissionResponse{}
- reviewResponse.Allowed = true
- if pod.Name == "webhook-to-be-mutated" {
- reviewResponse.Patch = []byte(podsInitContainerPatch)
- pt := v1beta1.PatchTypeJSONPatch
- reviewResponse.PatchType = &pt
- }
- return &reviewResponse
- }
- // denySpecificAttachment denies `kubectl attach to-be-attached-pod -i -c=container1"
- // or equivalent client requests.
- func denySpecificAttachment(ar v1beta1.AdmissionReview) *v1beta1.AdmissionResponse {
- klog.V(2).Info("handling attaching pods")
- if ar.Request.Name != "to-be-attached-pod" {
- return &v1beta1.AdmissionResponse{Allowed: true}
- }
- podResource := metav1.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"}
- if e, a := podResource, ar.Request.Resource; e != a {
- err := fmt.Errorf("expect resource to be %s, got %s", e, a)
- klog.Error(err)
- return toAdmissionResponse(err)
- }
- if e, a := "attach", ar.Request.SubResource; e != a {
- err := fmt.Errorf("expect subresource to be %s, got %s", e, a)
- klog.Error(err)
- return toAdmissionResponse(err)
- }
- raw := ar.Request.Object.Raw
- podAttachOptions := corev1.PodAttachOptions{}
- deserializer := codecs.UniversalDeserializer()
- if _, _, err := deserializer.Decode(raw, nil, &podAttachOptions); err != nil {
- klog.Error(err)
- return toAdmissionResponse(err)
- }
- klog.V(2).Info(fmt.Sprintf("podAttachOptions=%#v\n", podAttachOptions))
- if !podAttachOptions.Stdin || podAttachOptions.Container != "container1" {
- return &v1beta1.AdmissionResponse{Allowed: true}
- }
- return &v1beta1.AdmissionResponse{
- Allowed: false,
- Result: &metav1.Status{
- Message: "attaching to pod 'to-be-attached-pod' is not allowed",
- },
- }
- }
|