minor tweaks
This commit is contained in:
parent
8fb6f7e303
commit
173957c034
@ -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
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user