Skip to content

Instantly share code, notes, and snippets.

@onelittlenightmusic
Created February 19, 2020 08:19
Show Gist options
  • Save onelittlenightmusic/2daa8c6575466b178a0982e94449a5ec to your computer and use it in GitHub Desktop.
Save onelittlenightmusic/2daa8c6575466b178a0982e94449a5ec to your computer and use it in GitHub Desktop.
package system
import data.kubernetes.admission
main = {
"apiVersion": "admission.k8s.io/v1beta1",
"kind": "AdmissionReview",
"response": response,
}
default response = {"allowed": true}
response = {
"allowed": false,
"status": {
"reason": reason,
},
} {
reason = concat(", ", admission.deny)
reason != ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment