minor tweaks

This commit is contained in:
Hyatt 2023-03-18 14:04:46 -05:00
parent 8fb6f7e303
commit 173957c034
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 21 additions and 5 deletions

View File

@ -1,5 +1,23 @@
package operations package operations
import (
admission "k8s.io/api/admission/v1"
)
func DeploymentsValidation() Hook { 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
},
}
} }

View File

@ -2,10 +2,9 @@ package operations
import ( import (
"fmt" "fmt"
"log"
admission "k8s.io/api/admission/v1" admission "k8s.io/api/admission/v1"
v1 "k8s.io/api/core/v1" core "k8s.io/api/core/v1"
) )
func PodsMutation() Hook { func PodsMutation() Hook {
@ -33,9 +32,8 @@ func podMutationCreate() AdmitFunc {
} }
// if pod is administratively exempt // if pod is administratively exempt
if func(pod *v1.Pod) bool { if func(pod *core.Pod) bool {
for label, value := range pod.Annotations { for label, value := range pod.Annotations {
log.Printf("[TRACE] Checking Metadata: %s=%s", label, value)
if label == "AdminNoMutate" && value == "true" { if label == "AdminNoMutate" && value == "true" {
return false return false
} }