Adds default Allow

This commit is contained in:
Hyatt 2023-03-18 12:39:38 -05:00
parent a8f35ee53d
commit 2a38c637c8
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -10,6 +10,16 @@ import (
func PodsValidation() Hook {
return Hook{
Create: podValidationCreate(),
// default allow
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
},
}
}