Log Output Updates
This commit is contained in:
parent
3f60d34155
commit
a8f35ee53d
@ -206,7 +206,7 @@ func (h *admissionHandler) Serve(hook operations.Hook) http.HandlerFunc {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Printf("[INFO] Webhook [%s - %s] - Allowed: %t", r.URL.Path, review.Request.Operation, result.Allowed)
|
log.Printf("[INFO] Webhook [%s] - Allowed: %t", review.Request.Operation, result.Allowed)
|
||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
w.Write(res)
|
w.Write(res)
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package operations
|
package operations
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"log"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
admission "k8s.io/api/admission/v1"
|
admission "k8s.io/api/admission/v1"
|
||||||
@ -21,7 +22,9 @@ func podValidationCreate() AdmitFunc {
|
|||||||
|
|
||||||
for _, c := range pod.Spec.Containers {
|
for _, c := range pod.Spec.Containers {
|
||||||
if strings.HasSuffix(c.Image, ":latest") {
|
if strings.HasSuffix(c.Image, ":latest") {
|
||||||
return &Result{Msg: "You cannot use the tag 'latest' in a container."}, nil
|
msg := "You cannot use the tag 'latest' in a container."
|
||||||
|
log.Printf("[TRACE] Request Rejectd: %s", msg)
|
||||||
|
return &Result{Msg: msg}, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@
|
|||||||
}],
|
}],
|
||||||
"containers": [{
|
"containers": [{
|
||||||
"name": "toolbox",
|
"name": "toolbox",
|
||||||
"image": "jmsearcy/toolbox:latest",
|
"image": "jmsearcy/toolbox:v1.0.0",
|
||||||
"ports": [{
|
"ports": [{
|
||||||
"containerPort": 8080,
|
"containerPort": 8080,
|
||||||
"protocol": "TCP"
|
"protocol": "TCP"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user