@jkcfg/kubernetes
Version:
jk Kubernetes library
21 lines • 917 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"required": [
"spec"
],
"type": "object",
"description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action",
"properties": {
"status": {
"description": "Status is filled in by the server and indicates whether the request is allowed or not",
"$ref": "_definitions.json#/definitions/v1beta1.SubjectAccessReviewStatus"
},
"spec": {
"description": "Spec holds information about the request being evaluated. user and groups must be empty",
"$ref": "_definitions.json#/definitions/v1beta1.SelfSubjectAccessReviewSpec"
},
"metadata": {
"$ref": "_definitions.json#/definitions/v1.ObjectMeta"
}
}
}