Red Hat OpenShift · Schema
SecurityContextConstraints
ContainersEnterpriseHybrid CloudKubernetesPaaSRed Hat
Properties
| Name | Type | Description |
|---|---|---|
| apiVersion | string | |
| kind | string | |
| metadata | object | |
| allowPrivilegedContainer | boolean | |
| allowedCapabilities | array | |
| runAsUser | object | |
| seLinuxContext | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SecurityContextConstraints",
"title": "SecurityContextConstraints",
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"default": "security.openshift.io/v1"
},
"kind": {
"type": "string",
"default": "SecurityContextConstraints"
},
"metadata": {
"$ref": "#/components/schemas/ObjectMeta"
},
"allowPrivilegedContainer": {
"type": "boolean"
},
"allowedCapabilities": {
"type": "array",
"items": {
"type": "string"
}
},
"runAsUser": {
"type": "object"
},
"seLinuxContext": {
"type": "object"
}
}
}