forked from instrumenta/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhandler-v1.json
19 lines (19 loc) · 888 Bytes
/
handler-v1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"description": "One and only one of the following should be specified. Exec specifies the action to take.",
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.api.core.v1.ExecAction"
},
"httpGet": {
"description": "HTTPGet specifies the http request to perform.",
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.api.core.v1.HTTPGetAction"
},
"tcpSocket": {
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported",
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.api.core.v1.TCPSocketAction"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}