forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.json
19 lines (19 loc) · 999 Bytes
/
handler.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": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.15.6/_definitions.json#/definitions/io.k8s.api.core.v1.ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.15.6/_definitions.json#/definitions/io.k8s.api.core.v1.HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.15.6/_definitions.json#/definitions/io.k8s.api.core.v1.TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object",
"$schema": "http://json-schema.org/schema#"
}