2021-10-19 12:20:06 +00:00
# Include{groups}
portals :
2022-02-24 18:15:06 +00:00
open :
2022-08-08 21:25:02 +00:00
# Include{portalLink}
2021-10-19 12:20:06 +00:00
questions :
2021-10-20 17:39:05 +00:00
# Include{global}
2023-03-01 07:55:51 +00:00
# Include{workload}
# Include{workloadDeployment}
# Include{replicas1}
# Include{podSpec}
# Include{containerMain}
2023-05-03 08:30:22 +00:00
2023-03-01 07:55:51 +00:00
# Include{containerBasic}
# Include{containerAdvanced}
2023-12-02 20:12:17 +00:00
# Include{containerConfig}
# Include{podOptions}
2023-01-06 18:44:59 +00:00
- variable : gotify
group : App Configuration
label : Gotify Configuration
2021-10-19 12:20:06 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-10-19 12:20:06 +00:00
type : dict
attrs :
- variable : user
2023-01-06 18:44:59 +00:00
label : Username (First install only)
description : Sets the default admin user.
2021-10-19 12:20:06 +00:00
schema :
type : string
2023-01-06 18:44:59 +00:00
default : ""
required : true
2021-10-19 12:20:06 +00:00
- variable : pass
2023-01-06 18:44:59 +00:00
label : Password (First install only)
description : Sets the default admin pass.
2021-10-19 12:20:06 +00:00
schema :
type : string
default : ""
2023-01-06 18:44:59 +00:00
required : true
private : true
- variable : registration
label : Registration
description : Enable / Disable user registration.
2021-10-19 12:20:06 +00:00
schema :
type : boolean
2023-01-06 18:44:59 +00:00
default : true
- variable : password_strength
label : Password Strength
description : The bcrypt password strength (higher = better but also slower).
2021-10-19 12:20:06 +00:00
schema :
type : int
default : 10
2023-01-06 18:44:59 +00:00
- variable : show_advanced
label : Show Advanced Options
description : Shows advanced options that should be changed only if you know what you are doing
2021-10-19 12:20:06 +00:00
schema :
2023-01-06 18:44:59 +00:00
type : boolean
default : false
show_subquestions_if : true
subquestions :
- variable : response_headers
label : Response Headers
description : Response headers are added to every response
schema :
type : list
default : [ ]
items :
- variable : response_header_entry
label : Response Header Entry
schema :
additional_attrs : true
type : dict
attrs :
- variable : key
label : Header Key
schema :
type : string
default : ""
required : true
- variable : value
label : Header Value
schema :
type : string
default : ""
required : true
- variable : keep_alive_period_seconds
label : Keep Alive Period Seconds
description : Set the interval in which keepalive packets will be sent. 0 = use Go default (15s); -1 = disable keepalive; Only change this value if you know what you are doing.
schema :
type : int
required : true
default : 0
- variable : stream
label : Stream
2021-10-19 12:20:06 +00:00
schema :
2023-01-06 18:44:59 +00:00
additional_attrs : true
type : dict
attrs :
- variable : show_advanced
label : Show Advanced Options
description : Shows advanced options that should be changed only if you know what you are doing
schema :
type : boolean
default : false
show_subquestions_if : true
subquestions :
- variable : ping_period_seconds
label : Ping Period Seconds
description : The interval in which websocket pings will be sent. Only change this value if you know what you are doing.
schema :
type : int
required : true
default : 45
- variable : allowed_origins
label : Allowed Origins
description : Allowed origins for websocket connections (Same Origin is always allowed, Default is Same Origin)
schema :
type : list
default : [ ]
items :
- variable : allowed_origin_entry
label : Allowed Origin Entry
schema :
type : string
default : ""
required : true
- variable : cors
label : CORS
schema :
additional_attrs : true
type : dict
attrs :
- variable : show_advanced
label : Show Advanced Options
description : Shows advanced options that should be changed only if you know what you are doing
schema :
type : boolean
default : false
show_subquestions_if : true
subquestions :
- variable : allowed_origins
label : Allowed Origins
schema :
type : list
default : [ ]
items :
- variable : allowed_origin_entry
label : Allowed Origin Entry
schema :
type : string
required : true
default : ""
- variable : allowed_methods
label : Allowed Methods
schema :
type : list
default : [ ]
items :
- variable : allowed_method_entry
label : Allowed Method Entry
schema :
type : string
default : ""
required : true
- variable : allowed_headers
label : Allowed Headers
schema :
type : list
default : [ ]
items :
- variable : allowed_header_entry
label : Allowed Header Entry
schema :
type : string
default : ""
required : true
2023-05-03 08:30:22 +00:00
2022-08-08 21:25:02 +00:00
# Include{serviceRoot}
2021-10-19 12:20:06 +00:00
- variable : main
2023-01-06 18:44:59 +00:00
label : Main Service
description : The Primary service on which the healthcheck runs, often the webUI
2021-10-19 12:20:06 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-10-19 12:20:06 +00:00
type : dict
attrs :
2022-09-17 11:24:06 +00:00
# Include{serviceSelectorLoadBalancer}
2022-09-14 21:27:12 +00:00
# Include{serviceSelectorExtras}
2021-10-19 12:20:06 +00:00
- variable : main
2023-01-06 18:44:59 +00:00
label : Main Service Port Configuration
2021-10-19 12:20:06 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-10-19 12:20:06 +00:00
type : dict
attrs :
2021-11-14 14:32:48 +00:00
- variable : port
2023-01-06 18:44:59 +00:00
label : Port
description : This port exposes the container port on the service
2021-11-14 14:32:48 +00:00
schema :
type : int
2021-11-28 09:26:31 +00:00
default : 10084
2021-11-14 14:32:48 +00:00
required : true
2022-08-08 21:25:02 +00:00
# Include{serviceExpertRoot}
2021-11-20 23:20:50 +00:00
# Include{serviceExpert}
2021-10-19 12:20:06 +00:00
# Include{serviceList}
2022-08-08 21:25:02 +00:00
# Include{persistenceRoot}
2021-10-19 12:20:06 +00:00
- variable : data
2023-01-06 18:44:59 +00:00
label : App Data Storage
description : Stores the Application Data.
2021-10-19 12:20:06 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-10-19 12:20:06 +00:00
type : dict
attrs :
2021-11-06 20:41:31 +00:00
# Include{persistenceBasic}
2021-10-19 12:20:06 +00:00
# Include{persistenceList}
2022-08-08 21:25:02 +00:00
# Include{ingressRoot}
2021-10-19 12:20:06 +00:00
- variable : main
2023-01-06 18:44:59 +00:00
label : Main Ingress
2021-10-19 12:20:06 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-10-19 12:20:06 +00:00
type : dict
attrs :
2022-03-22 20:35:44 +00:00
# Include{ingressDefault}
# Include{ingressTLS}
# Include{ingressTraefik}
2023-05-28 10:32:51 +00:00
# Include{ingressAdvanced}
2022-11-11 18:09:57 +00:00
# Include{ingressList}
2023-03-01 08:30:36 +00:00
# Include{securityContextRoot}
2023-05-03 08:30:22 +00:00
- 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 of the user running the application"
schema :
type : int
default : 568
2023-03-01 08:30:36 +00:00
# Include{securityContextContainer}
# Include{securityContextAdvanced}
# Include{securityContextPod}
2023-05-03 08:30:22 +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
2021-10-19 12:20:06 +00:00
# Include{resources}
# Include{advanced}
# Include{addons}
2022-10-01 21:39:52 +00:00
# Include{codeserver}
2023-03-01 08:30:36 +00:00
# Include{netshoot}
2022-10-01 21:39:52 +00:00
# Include{vpn}
2022-08-12 11:15:27 +00:00
# Include{documentation}