Add parameters for interactive containers. Useful with kubectl attach.

This commit is contained in:
Brendan Burns
2015-07-29 21:16:54 -07:00
parent 769230e735
commit 51757f6552
8 changed files with 7046 additions and 8089 deletions

View File

@@ -12394,6 +12394,14 @@
"securityContext": {
"$ref": "v1.SecurityContext",
"description": "security options the pod should run with; see http://releases.k8s.io/HEAD/docs/design/security_context.md"
},
"stdin": {
"type": "boolean",
"description": "Whether this container should allocate a buffer for stdin in the container runtime; default is false"
},
"tty": {
"type": "boolean",
"description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true; default is false"
}
}
},