Adds default Allow
This commit is contained in:
parent
a8f35ee53d
commit
2a38c637c8
@ -10,6 +10,16 @@ import (
|
|||||||
func PodsValidation() Hook {
|
func PodsValidation() Hook {
|
||||||
return Hook{
|
return Hook{
|
||||||
Create: podValidationCreate(),
|
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
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user