mirror of
https://github.com/truenas/charts.git
synced 2026-06-17 07:27:44 +08:00
tty and stdin docs
This commit is contained in:
@@ -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
|
||||
|
||||
15
library/common/_docs/values/stdin.md
Normal file
15
library/common/_docs/values/stdin.md
Normal 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
|
||||
```
|
||||
15
library/common/_docs/values/tty.md
Normal file
15
library/common/_docs/values/tty.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user