Run as PUID/PGID by default and add startAsRoot option (#246)

This commit is contained in:
Kjeld Schouten-Lebbing
2021-03-08 14:32:58 +01:00
committed by kjeld Schouten-Lebbing
parent 048161293c
commit 4e6ceee3cb
104 changed files with 182 additions and 99 deletions
+25
View File
@@ -15,6 +15,31 @@ This file contains config values that are not included in questions.yaml, but sh
This file is, however, not very well checked by validation and CI. Use it when you absolutely have to.
One important setting in ix_values.yaml is the optional setting: `startAsRoot: true`
This setting is a compatibility toggle for containers that need to be started by root, often these containers use PUID and PGID to descalate (lower) away from root but require it to start.
A minimal example ix_values.yaml would be:
```
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: jacobalberty/unifi
tag: 6.0.45
pullPolicy: IfNotPresent
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##
```
##### test_values.yaml