Created
February 19, 2020 08:19
-
-
Save onelittlenightmusic/2daa8c6575466b178a0982e94449a5ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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