2023-02-11 10:42:23 +00:00
|
|
|
# Include{groups}
|
|
|
|
portals:
|
|
|
|
open:
|
|
|
|
# Include{portalLink}
|
|
|
|
questions:
|
|
|
|
# Include{global}
|
|
|
|
- variable: imageSelector
|
|
|
|
group: Container Image
|
|
|
|
label: Select Image
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: image
|
|
|
|
enum:
|
|
|
|
- value: image
|
|
|
|
description: Thin
|
|
|
|
- value: liteImage
|
|
|
|
description: Lite
|
|
|
|
- value: fullImage
|
|
|
|
description: Full
|
2023-03-01 07:55:51 +00:00
|
|
|
# Include{workload}
|
|
|
|
# Include{workloadDeployment}
|
|
|
|
|
|
|
|
# Include{replicas1}
|
|
|
|
# Include{podSpec}
|
|
|
|
# Include{containerMain}
|
|
|
|
# Include{containerBasic}
|
|
|
|
# Include{containerAdvanced}
|
|
|
|
|
2023-02-11 10:42:23 +00:00
|
|
|
- variable: env
|
|
|
|
group: App Configuration
|
|
|
|
label: Image Environment
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: SCRYPTED_WEBHOOK_UPDATE_AUTHORIZATION
|
|
|
|
label: Scrypted WebHook Update Authorization
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
default: Bearer MAKE_ME_SECURE
|
|
|
|
- variable: SCRYPTED_WEBHOOK_UPDATE
|
|
|
|
label: Scrypted WebHook Update
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
default: http://localhost:10611/v1/update
|
|
|
|
# Include{containerConfig}
|
|
|
|
# Include{serviceRoot}
|
|
|
|
- variable: main
|
|
|
|
label: Main Service
|
|
|
|
description: The Primary service on which the healthcheck runs, often the webUI
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
# Include{serviceSelectorLoadBalancer}
|
|
|
|
# Include{serviceSelectorExtras}
|
|
|
|
- variable: main
|
|
|
|
label: Main Service Port Configuration
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: port
|
|
|
|
label: Port
|
|
|
|
description: This port exposes the container port on the service
|
|
|
|
schema:
|
|
|
|
type: int
|
|
|
|
default: 10611
|
|
|
|
required: true
|
|
|
|
# Include{serviceExpertRoot}
|
|
|
|
# Include{serviceExpert}
|
|
|
|
# Include{serviceList}
|
|
|
|
# Include{persistenceRoot}
|
|
|
|
- variable: server
|
|
|
|
label: App Server Storage
|
|
|
|
description: Stores the Application Server.
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
# Include{persistenceBasic}
|
|
|
|
- variable: media
|
|
|
|
label: App Media Storage
|
|
|
|
description: Stores the Application Media.
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
# Include{persistenceBasic}
|
|
|
|
# Include{persistenceList}
|
|
|
|
# Include{ingressRoot}
|
|
|
|
- variable: main
|
|
|
|
label: Main Ingress
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
# Include{ingressDefault}
|
|
|
|
# Include{ingressTLS}
|
|
|
|
# Include{ingressTraefik}
|
2023-05-28 10:32:51 +00:00
|
|
|
# Include{ingressAdvanced}
|
2023-02-11 10:42:23 +00:00
|
|
|
# Include{ingressList}
|
2023-03-01 08:30:36 +00:00
|
|
|
|
2023-02-11 10:42:23 +00:00
|
|
|
# Include{podSecurityContextRoot}
|
|
|
|
- variable: runAsUser
|
|
|
|
label: runAsUser
|
|
|
|
description: The UserID of the user running the application
|
|
|
|
schema:
|
|
|
|
type: int
|
2023-02-15 09:29:49 +00:00
|
|
|
default: 0
|
2023-02-11 10:42:23 +00:00
|
|
|
- variable: runAsGroup
|
|
|
|
label: runAsGroup
|
|
|
|
description: The groupID this App of the user running the application
|
|
|
|
schema:
|
|
|
|
type: int
|
2023-02-15 09:29:49 +00:00
|
|
|
default: 0
|
2023-03-01 08:30:36 +00:00
|
|
|
# Include{securityContextContainer}
|
|
|
|
# Include{securityContextAdvanced}
|
|
|
|
# Include{securityContextPod}
|
2023-02-11 10:42:23 +00:00
|
|
|
- variable: fsGroup
|
|
|
|
label: fsGroup
|
|
|
|
description: The group that should own ALL storage.
|
|
|
|
schema:
|
|
|
|
type: int
|
|
|
|
default: 568
|
2023-03-01 08:30:36 +00:00
|
|
|
|
2023-02-11 10:42:23 +00:00
|
|
|
# Include{resources}
|
|
|
|
# Include{advanced}
|
|
|
|
# Include{addons}
|
|
|
|
# Include{codeserver}
|
2023-03-01 08:30:36 +00:00
|
|
|
# Include{netshoot}
|
2023-02-11 10:42:23 +00:00
|
|
|
# Include{vpn}
|
|
|
|
# Include{documentation}
|