From 173957c034b2064f10573c7ee59eee70625809c2 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sat, 18 Mar 2023 14:04:46 -0500 Subject: [PATCH] minor tweaks --- internal/operations/deploymentsValidation.go | 20 +++++++++++++++++++- internal/operations/podsMutation.go | 6 ++---- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/internal/operations/deploymentsValidation.go b/internal/operations/deploymentsValidation.go index 73111b1..6ebebf7 100644 --- a/internal/operations/deploymentsValidation.go +++ b/internal/operations/deploymentsValidation.go @@ -1,5 +1,23 @@ package operations +import ( + admission "k8s.io/api/admission/v1" +) + func DeploymentsValidation() Hook { - return Hook{} + return Hook{ + // default allow + Create: func(r *admission.AdmissionRequest) (*Result, error) { + return &Result{Allowed: true}, nil + }, + Delete: func(r *admission.AdmissionRequest) (*Result, error) { + return &Result{Allowed: true}, nil + }, + Update: func(r *admission.AdmissionRequest) (*Result, error) { + return &Result{Allowed: true}, nil + }, + Connect: func(r *admission.AdmissionRequest) (*Result, error) { + return &Result{Allowed: true}, nil + }, + } } diff --git a/internal/operations/podsMutation.go b/internal/operations/podsMutation.go index 35d8f14..0fb5d9d 100644 --- a/internal/operations/podsMutation.go +++ b/internal/operations/podsMutation.go @@ -2,10 +2,9 @@ package operations import ( "fmt" - "log" admission "k8s.io/api/admission/v1" - v1 "k8s.io/api/core/v1" + core "k8s.io/api/core/v1" ) func PodsMutation() Hook { @@ -33,9 +32,8 @@ func podMutationCreate() AdmitFunc { } // if pod is administratively exempt - if func(pod *v1.Pod) bool { + if func(pod *core.Pod) bool { for label, value := range pod.Annotations { - log.Printf("[TRACE] Checking Metadata: %s=%s", label, value) if label == "AdminNoMutate" && value == "true" { return false }