Restructure repo to be a little cleaner (#445)
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
categories:
|
||||
- download-tools
|
||||
icon_url: https://upload.wikimedia.org/wikipedia/commons/6/6d/Transmission_icon.png
|
||||
@@ -0,0 +1,50 @@
|
||||
##
|
||||
# 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: ghcr.io/truecharts/transmission
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v3.00
|
||||
|
||||
transmissionFixedConfig:
|
||||
bind-address-ipv4: "0.0.0.0"
|
||||
bind-address-ipv6: ::"
|
||||
cache-size-mb: 4
|
||||
lpd-enabled: false
|
||||
dht-enabled: true
|
||||
peer-congestion-algorithm: ""
|
||||
message-level: 2
|
||||
peer-id-ttl-hours: 4
|
||||
peer-port: 51413
|
||||
peer-port-random-high: 65535
|
||||
peer-port-random-low: 49152
|
||||
peer-port-random-on-start: false
|
||||
peer-socket-tos: "default"
|
||||
pex-enabled: true
|
||||
port-forwarding-enabled: false
|
||||
preallocation: 0
|
||||
prefetch-enabled: true
|
||||
rename-partial-files: true
|
||||
rpc-authentication-required: false
|
||||
rpc-bind-address: "0.0.0.0"
|
||||
rpc-enabled: true
|
||||
rpc-host-whitelist: ""
|
||||
rpc-host-whitelist-enabled: false
|
||||
rpc-password: "CHANGEME"
|
||||
rpc-port: 9091
|
||||
rpc-url: "/transmission/"
|
||||
rpc-username: ""
|
||||
rpc-whitelist: ""
|
||||
rpc-whitelist-enabled: false
|
||||
umask: 2
|
||||
utp-enabled: true
|
||||
watch-dir: "/watch"
|
||||
watch-dir-enabled: true
|
||||
|
||||
##
|
||||
# Most other defaults are set in questions.yaml
|
||||
# For other options please refer to the wiki, default_values.yaml or the common library chart
|
||||
##
|
||||
@@ -0,0 +1,744 @@
|
||||
groups:
|
||||
- name: "Container Image"
|
||||
description: "Image to be used for container"
|
||||
- name: "Workload Configuration"
|
||||
description: "Configure workload deployment"
|
||||
- name: "Configuration"
|
||||
description: "additional container configuration"
|
||||
- name: "Networking"
|
||||
description: "Configure / service for container"
|
||||
- name: "Storage"
|
||||
description: "Persist and share data that is separate from the lifecycle of the container"
|
||||
- name: "Resources and Devices"
|
||||
description: "Specify resources/devices to be allocated to workload"
|
||||
- name: "Reverse Proxy Configuration"
|
||||
description: "Reverse Proxy configuration"
|
||||
- name: "Advanced"
|
||||
description: "Advanced Configuration"
|
||||
- name: "WARNING"
|
||||
description: "WARNING"
|
||||
portals:
|
||||
web_portal:
|
||||
protocols:
|
||||
- "$kubernetes-resource_configmap_portal_protocol"
|
||||
host:
|
||||
- "$kubernetes-resource_configmap_portal_host"
|
||||
ports:
|
||||
- "$kubernetes-resource_configmap_portal_port"
|
||||
questions:
|
||||
- variable: portal
|
||||
group: "Container Image"
|
||||
label: "Configure Portal Button"
|
||||
schema:
|
||||
type: dict
|
||||
hidden: true
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable"
|
||||
description: "enable the portal button"
|
||||
schema:
|
||||
hidden: true
|
||||
editable: false
|
||||
type: boolean
|
||||
default: true
|
||||
|
||||
# Update Policy
|
||||
- variable: strategyType
|
||||
group: "Container Image"
|
||||
label: "Update Strategy"
|
||||
schema:
|
||||
type: string
|
||||
default: "Recreate"
|
||||
enum:
|
||||
- value: "RollingUpdate"
|
||||
description: "Create new pods and then kill old ones"
|
||||
- value: "Recreate"
|
||||
description: "Kill existing pods before creating new ones"
|
||||
# Configure Time Zone
|
||||
- variable: timezone
|
||||
group: "Container Image"
|
||||
label: "Timezone"
|
||||
schema:
|
||||
type: string
|
||||
default: "Etc/UTC"
|
||||
$ref:
|
||||
- "definitions/timezone"
|
||||
|
||||
- variable: transmissionConfig
|
||||
group: "Configuration"
|
||||
label: "Transmission Settings"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: alt-speed-down
|
||||
label: "alt-speed-down"
|
||||
schema:
|
||||
type: int
|
||||
default: 50
|
||||
- variable: alt-speed-enabled
|
||||
label: "alt-speed-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: alt-speed-time-begin
|
||||
label: "alt-speed-time-begin"
|
||||
schema:
|
||||
type: int
|
||||
default: 540
|
||||
- variable: alt-speed-time-day
|
||||
label: "alt-speed-time-day"
|
||||
schema:
|
||||
type: int
|
||||
default: 127
|
||||
- variable: alt-speed-time-enabled
|
||||
label: "alt-speed-time-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: alt-speed-time-end
|
||||
label: "alt-speed-time-end"
|
||||
schema:
|
||||
type: int
|
||||
default: 1020
|
||||
- variable: alt-speed-up
|
||||
label: "alt-speed-up"
|
||||
schema:
|
||||
type: int
|
||||
default: 50
|
||||
- variable: blocklist-enabled
|
||||
label: "blocklist-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: blocklist-url
|
||||
label: "blocklist-url"
|
||||
schema:
|
||||
type: string
|
||||
default: "http://john.bitsurge.net/public/biglist.p2p.gz"
|
||||
- variable: download-dir
|
||||
label: "download-dir"
|
||||
schema:
|
||||
type: string
|
||||
default: "/downloads/complete"
|
||||
- variable: download-queue-enabled
|
||||
label: "download-queue-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: download-queue-size
|
||||
label: "download-queue-size"
|
||||
schema:
|
||||
type: int
|
||||
default: 5
|
||||
- variable: encryption
|
||||
label: "encryption"
|
||||
schema:
|
||||
type: int
|
||||
default: 1
|
||||
- variable: idle-seeding-limit
|
||||
label: "idle-seeding-limit"
|
||||
schema:
|
||||
type: int
|
||||
default: 30
|
||||
- variable: idle-seeding-limit-enabled
|
||||
label: "idle-seeding-limit-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: incomplete-dir
|
||||
label: "incomplete-dir"
|
||||
schema:
|
||||
type: string
|
||||
default: "/downloads/incomplete"
|
||||
- variable: incomplete-dir-enabled
|
||||
label: "incomplete-dir-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: peer-limit-global
|
||||
label: "peer-limit-global"
|
||||
schema:
|
||||
type: int
|
||||
default: 200
|
||||
- variable: peer-limit-per-torrent
|
||||
label: "peer-limit-per-torrent"
|
||||
schema:
|
||||
type: int
|
||||
default: 50
|
||||
- variable: queue-stalled-enabled
|
||||
label: "queue-stalled-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: queue-stalled-minutes
|
||||
label: "queue-stalled-minutes"
|
||||
schema:
|
||||
type: int
|
||||
default: 30
|
||||
- variable: ratio-limit
|
||||
label: "ratio-limit"
|
||||
schema:
|
||||
type: int
|
||||
default: 2
|
||||
- variable: ratio-limit-enabled
|
||||
label: "ratio-limit-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: scrape-paused-torrents-enabled
|
||||
label: "scrape-paused-torrents-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: script-torrent-done-enabled
|
||||
label: "script-torrent-done-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: script-torrent-done-filename
|
||||
label: "script-torrent-done-filename"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: seed-queue-enabled
|
||||
label: "seed-queue-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: seed-queue-size
|
||||
label: "seed-queue-size"
|
||||
schema:
|
||||
type: int
|
||||
default: 10
|
||||
- variable: speed-limit-down
|
||||
label: "speed-limit-down"
|
||||
schema:
|
||||
type: int
|
||||
default: 100
|
||||
- variable: speed-limit-down-enabled
|
||||
label: "speed-limit-down-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: speed-limit-up
|
||||
label: "speed-limit-up"
|
||||
schema:
|
||||
type: int
|
||||
default: 100
|
||||
- variable: speed-limit-up-enabled
|
||||
label: "speed-limit-up-enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: start-added-torrents
|
||||
label: "start-added-torrents"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: trash-original-torrent-files
|
||||
label: "trash-original-torrent-files"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: upload-slots-per-torrent
|
||||
label: "upload-slots-per-torrent"
|
||||
schema:
|
||||
type: int
|
||||
default: 14
|
||||
|
||||
# Configure Enviroment Variables
|
||||
- variable: environmentVariables
|
||||
label: "Image environment"
|
||||
group: "Configuration"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: environmentVariable
|
||||
label: "Environment Variable"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: "Name"
|
||||
schema:
|
||||
type: string
|
||||
- variable: value
|
||||
label: "Value"
|
||||
schema:
|
||||
type: string
|
||||
|
||||
# Enable Host Networking
|
||||
- variable: hostNetwork
|
||||
group: "Networking"
|
||||
label: "Enable Host Networking"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: services
|
||||
group: "Networking"
|
||||
label: "Configure Service"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: main
|
||||
label: "Main service"
|
||||
description: "The Primary service on which the healthcheck runs, often the webUI"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the service"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
hidden: true
|
||||
- variable: type
|
||||
label: "Service type"
|
||||
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System"
|
||||
schema:
|
||||
type: string
|
||||
default: "ClusterIP"
|
||||
enum:
|
||||
- value: "NodePort"
|
||||
description: "NodePort"
|
||||
- value: "ClusterIP"
|
||||
description: "ClusterIP"
|
||||
- variable: port
|
||||
label: "Port configuration"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: protocol
|
||||
label: "Port Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "HTTP"
|
||||
hidden: false
|
||||
enum:
|
||||
- value: HTTP
|
||||
description: "HTTP"
|
||||
- value: "HTTPS"
|
||||
description: "HTTPS"
|
||||
- variable: port
|
||||
label: "container port"
|
||||
schema:
|
||||
type: int
|
||||
default: 9091
|
||||
editable: false
|
||||
hidden: true
|
||||
- variable: targetport
|
||||
label: "Internal Service port"
|
||||
description: "When connecting internally to this App, you'll need this port"
|
||||
schema:
|
||||
type: int
|
||||
default: 9091
|
||||
editable: false
|
||||
hidden: true
|
||||
- variable: nodePort
|
||||
label: "(optional) host nodePort to expose to"
|
||||
description: "only get used when nodePort is selected"
|
||||
schema:
|
||||
type: int
|
||||
min: 9000
|
||||
max: 65535
|
||||
default: 36019
|
||||
required: true
|
||||
- variable: tcp
|
||||
label: "TCP Torrent connections"
|
||||
description: "This service is used to process incomming torrent connections over TCP"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the service"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
hidden: true
|
||||
- variable: type
|
||||
label: "Service type"
|
||||
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System"
|
||||
schema:
|
||||
type: string
|
||||
default: "NodePort"
|
||||
enum:
|
||||
- value: "NodePort"
|
||||
description: "NodePort"
|
||||
- value: "ClusterIP"
|
||||
description: "ClusterIP"
|
||||
- variable: port
|
||||
label: "Port configuration"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: protocol
|
||||
label: "Port Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "TCP"
|
||||
hidden: true
|
||||
enum:
|
||||
- value: TCP
|
||||
description: "TCP"
|
||||
- value: "UDP"
|
||||
description: "UDP"
|
||||
- variable: port
|
||||
label: "container port"
|
||||
schema:
|
||||
type: int
|
||||
default: 51413
|
||||
editable: false
|
||||
hidden: true
|
||||
- variable: targetport
|
||||
label: "Internal Service port"
|
||||
description: "When connecting internally to this App, you'll need this port"
|
||||
schema:
|
||||
type: int
|
||||
default: 51413
|
||||
editable: false
|
||||
hidden: true
|
||||
- variable: nodePort
|
||||
label: "(optional) host nodePort to expose to"
|
||||
description: "only get used when nodePort is selected"
|
||||
schema:
|
||||
type: int
|
||||
min: 9000
|
||||
max: 65535
|
||||
default: 36020
|
||||
required: true
|
||||
- variable: udp
|
||||
label: "UDP Torrent connections"
|
||||
description: "This service is used to process incomming torrent connections over UDP"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the service"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
hidden: true
|
||||
- variable: type
|
||||
label: "Service type"
|
||||
description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System"
|
||||
schema:
|
||||
type: string
|
||||
default: "NodePort"
|
||||
enum:
|
||||
- value: "NodePort"
|
||||
description: "NodePort"
|
||||
- value: "ClusterIP"
|
||||
description: "ClusterIP"
|
||||
- variable: port
|
||||
label: "Port configuration"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: protocol
|
||||
label: "Port Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "UDP"
|
||||
hidden: true
|
||||
enum:
|
||||
- value: TCP
|
||||
description: "TCP"
|
||||
- value: "UDP"
|
||||
description: "UDP"
|
||||
- variable: port
|
||||
label: "container port"
|
||||
schema:
|
||||
type: int
|
||||
default: 51413
|
||||
editable: false
|
||||
hidden: true
|
||||
- variable: targetport
|
||||
label: "Internal Service port"
|
||||
description: "When connecting internally to this App, you'll need this port"
|
||||
schema:
|
||||
type: int
|
||||
default: 51413
|
||||
editable: false
|
||||
hidden: true
|
||||
- variable: nodePort
|
||||
label: "(optional) host nodePort to expose to"
|
||||
description: "only get used when nodePort is selected"
|
||||
schema:
|
||||
type: int
|
||||
min: 9000
|
||||
max: 65535
|
||||
default: 36020
|
||||
required: true
|
||||
## TrueCharts Specific
|
||||
- variable: persistence
|
||||
label: "Integrated Persistent Storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: config
|
||||
label: "App Config Storage"
|
||||
description: "Stores the Application Configuration."
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the storage"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
hidden: true
|
||||
- variable: storageClass
|
||||
label: "Type of Storage"
|
||||
description: " Warning: Anything other than Internal will break rollback!"
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
enum:
|
||||
- value: ""
|
||||
description: "Internal"
|
||||
- variable: mountPath
|
||||
label: "mountPath"
|
||||
description: "Path inside the container the storage is mounted"
|
||||
schema:
|
||||
type: string
|
||||
default: "/config"
|
||||
hidden: true
|
||||
- variable: emptyDir
|
||||
label: "Mount a ramdisk instead of actual storage"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
hidden: true
|
||||
- variable: accessMode
|
||||
label: "Access Mode (Advanced)"
|
||||
description: "Allow or disallow multiple PVC's writhing to the same PVC"
|
||||
schema:
|
||||
type: string
|
||||
default: "ReadWriteOnce"
|
||||
enum:
|
||||
- value: "ReadWriteOnce"
|
||||
description: "ReadWriteOnce"
|
||||
- value: "ReadOnlyMany"
|
||||
description: "ReadOnlyMany"
|
||||
- value: "ReadWriteMany"
|
||||
description: "ReadWriteMany"
|
||||
- variable: size
|
||||
label: "Size quotum of storage"
|
||||
schema:
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: customStorage
|
||||
label: "Custom app storage"
|
||||
group: "Storage"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: volumeMount
|
||||
label: "Custom Storage"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enabled"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
required: true
|
||||
hidden: true
|
||||
editable: false
|
||||
- variable: setPermissions
|
||||
label: "Automatic Permissions"
|
||||
description: "Automatically set permissions on install"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
hidden: false
|
||||
- variable: readOnly
|
||||
label: "Mount as ReadOnly"
|
||||
description: "prevent any write from being done to the mounted volume"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
hidden: false
|
||||
- variable: emptyDir
|
||||
label: "emptyDir"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
hidden: true
|
||||
editable: false
|
||||
- variable: mountPath
|
||||
label: "Mount Path"
|
||||
description: "Path to mount inside the pod"
|
||||
schema:
|
||||
type: path
|
||||
required: true
|
||||
default: ""
|
||||
editable: true
|
||||
- variable: hostPath
|
||||
label: "Host Path"
|
||||
schema:
|
||||
type: hostpath
|
||||
required: true
|
||||
- variable: ingress
|
||||
label: ""
|
||||
group: "Reverse Proxy Configuration"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: main
|
||||
label: "WebUI"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: certType
|
||||
label: "Select Reverse-Proxy Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "disabled"
|
||||
enum:
|
||||
- value: "disabled"
|
||||
description: "Disabled"
|
||||
- value: ""
|
||||
description: "No Encryption/TLS/Certificates"
|
||||
- value: "selfsigned"
|
||||
description: "Self-Signed Certificate"
|
||||
- value: "ixcert"
|
||||
description: "TrueNAS SCALE Certificate"
|
||||
- variable: type
|
||||
label: "Reverse Proxy Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "HTTP"
|
||||
hidden: true
|
||||
editable: false
|
||||
required: true
|
||||
- variable: serviceName
|
||||
label: "Service name to proxy to"
|
||||
schema:
|
||||
hidden: true
|
||||
editable: false
|
||||
type: string
|
||||
default: ""
|
||||
- variable: entrypoint
|
||||
label: "Select Entrypoint"
|
||||
schema:
|
||||
show_if: [["certType", "!=", "disabled"]]
|
||||
type: string
|
||||
default: "websecure"
|
||||
required: true
|
||||
enum:
|
||||
- value: "websecure"
|
||||
description: "Websecure: HTTPS/TLS port 443"
|
||||
- variable: hosts
|
||||
label: "Hosts"
|
||||
schema:
|
||||
show_if: [["certType", "!=", "disabled"]]
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: host
|
||||
label: "Host"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: host
|
||||
label: "Domain Name"
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
- variable: path
|
||||
label: "path"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
hidden: true
|
||||
default: "/"
|
||||
- variable: certificate
|
||||
label: "Select TrueNAS SCALE Certificate"
|
||||
schema:
|
||||
type: int
|
||||
show_if: [["certType", "=", "ixcert"]]
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
- variable: authForwardURL
|
||||
label: "Forward Authentication URL"
|
||||
schema:
|
||||
show_if: [["certType", "!=", "disabled"]]
|
||||
type: string
|
||||
default: ""
|
||||
|
||||
- variable: UMASK
|
||||
group: "Advanced"
|
||||
label: "UMASK"
|
||||
description: "Sets the UMASK env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: string
|
||||
default: "002"
|
||||
# Enable privileged
|
||||
- variable: securityContext
|
||||
group: "Advanced"
|
||||
label: "Security Context"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: privileged
|
||||
label: "Enable privileged mode for Common-Chart based charts"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
# Set Pod Security Policy
|
||||
- variable: podSecurityContext
|
||||
group: "Advanced"
|
||||
label: "Pod Security Context"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: runAsNonRoot
|
||||
label: "runAsNonRoot"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: runAsUser
|
||||
label: "runAsUser"
|
||||
description: "The UserID of the user running the application"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
- variable: runAsGroup
|
||||
label: "runAsGroup"
|
||||
description: The groupID this App of the user running the application"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
- variable: supplementalGroups
|
||||
label: "supplementalGroups"
|
||||
description: "Additional groups this App needs access to"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: Group
|
||||
label: "Group"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
- variable: fsGroup
|
||||
label: "fsGroup"
|
||||
description: "The group that should own ALL storage."
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
- variable: fsGroupChangePolicy
|
||||
label: "When should we take ownership?"
|
||||
schema:
|
||||
type: string
|
||||
default: "OnRootMismatch"
|
||||
enum:
|
||||
- value: "OnRootMismatch"
|
||||
description: "OnRootMismatch"
|
||||
- value: "Always"
|
||||
description: "Always"
|
||||
Reference in New Issue
Block a user