tty and stdin docs

This commit is contained in:
Stavros kois
2022-12-01 16:49:16 +02:00
parent 6db0f3810a
commit 9fcbfa7fcc
3 changed files with 33 additions and 6 deletions

View File

@@ -63,6 +63,9 @@ hostNetwork: false
hostname: ""
tty: false
stdin: false
# Everything bellow needs documentation
global:
@@ -79,15 +82,10 @@ podAnnotations: {}
podLabels: {}
# TODO: docs
ixExternalInterfacesConfigurationNames: []
# - interface1
# - interface2
tty: false
stdin: false
enableServiceLinks: false
schedulerName: ""
@@ -102,7 +100,6 @@ nodeSelector: {}
tolerations: []
# TODO: docs
podSecurityContext:
runAsUser: 568
runAsGroup: 568

View File

@@ -0,0 +1,15 @@
# STDIN
## key: stdin
- Type: `boolean`
- Default: `false`
- Helm Template: ❌
Allocates a buffer for stdin in the container runtime.
Examples:
```yaml
stdin: true
```

View File

@@ -0,0 +1,15 @@
# TTY
## key: tty
- Type: `boolean`
- Default: `false`
- Helm Template: ❌
Allocates a TTY, requires also `stdin` set to true
Examples:
```yaml
tty: true
```