2021-09-13 10:58:34 +00:00
# Include{groups}
2021-02-15 10:31:41 +00:00
portals :
2022-02-24 18:15:06 +00:00
open :
2021-02-15 10:31:41 +00:00
protocols :
2021-03-11 16:41:17 +00:00
- "$kubernetes-resource_configmap_portal_protocol"
2021-02-23 17:21:54 +00:00
host :
2021-03-11 16:41:17 +00:00
- "$kubernetes-resource_configmap_portal_host"
2021-02-15 10:31:41 +00:00
ports :
2021-03-11 16:41:17 +00:00
- "$kubernetes-resource_configmap_portal_port"
2021-12-21 19:56:00 +00:00
path : "/"
admin :
protocols :
- "$kubernetes-resource_configmap_portal_protocol"
host :
- "$kubernetes-resource_configmap_portal_host"
ports :
- "$kubernetes-resource_configmap_portal_port"
path : "/browser/dist/admin/admin.html"
2021-02-15 10:31:41 +00:00
questions :
2021-03-11 16:41:17 +00:00
- 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
2021-10-20 17:39:05 +00:00
# Include{global}
2021-05-30 14:09:07 +00:00
- variable : controller
group : "Controller"
label : ""
2021-02-15 10:31:41 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-05-30 14:09:07 +00:00
type : dict
attrs :
2021-11-06 20:41:31 +00:00
- variable : advanced
label : "Show Advanced Controller Settings"
2021-05-30 14:09:07 +00:00
schema :
2021-11-06 20:41:31 +00:00
type : boolean
default : false
show_subquestions_if : true
subquestions :
- variable : type
description : "Please specify type of workload to deploy"
label : "(Advanced) Controller Type"
schema :
type : string
default : "deployment"
required : true
enum :
- value : "deployment"
description : "Deployment"
- value : "statefulset"
description : "Statefulset"
- value : "daemonset"
description : "Daemonset"
- variable : replicas
description : "Number of desired pod replicas"
label : "Desired Replicas"
schema :
type : int
default : 1
required : true
- variable : strategy
description : "Please specify type of workload to deploy"
label : "(Advanced) Update Strategy"
schema :
type : string
default : "RollingUpdate"
required : true
enum :
- value : "Recreate"
description : "Recreate: Kill existing pods before creating new ones"
- value : "RollingUpdate"
description : "RollingUpdate: Create new pods and then kill old ones"
- value : "OnDelete"
description : "(Legacy) OnDelete: ignore .spec.template changes"
2021-09-13 10:58:34 +00:00
# Include{controllerExpert}
2021-12-11 12:49:05 +00:00
- variable : secret
2021-05-30 14:09:07 +00:00
group : "Container Configuration"
2021-12-11 12:49:05 +00:00
label : "Image Secrets"
2021-03-06 20:32:31 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-03-06 20:32:31 +00:00
type : dict
attrs :
- variable : username
label : "Username for WebUI"
schema :
type : string
default : "admin"
required : true
- variable : password
label : "Password for WebUI"
schema :
type : string
2021-07-13 21:40:12 +00:00
valid_chars : "[a-zA-Z0-9!@#$%^&*?]{8,}"
2021-12-11 12:49:05 +00:00
private : true
required : true
default : "REPLACETHIS"
- variable : env
group : "Container Configuration"
label : "Image Environment"
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-12-11 12:49:05 +00:00
type : dict
attrs :
2022-04-10 21:57:07 +00:00
- variable : aliasgroup1
label : "aliasgroup1"
description : "Comma separated hosts list."
2021-12-11 12:49:05 +00:00
schema :
type : string
2022-04-10 21:57:07 +00:00
default : ""
2021-03-06 20:32:31 +00:00
- variable : dictionaries
label : "Dictionaries to use, leave empty to use all"
schema :
type : string
default : "de_DE en_GB en_US es_ES fr_FR it nl pt_BR pt_PT ru"
- variable : extra_params
label : "Extra Parameters to add"
2021-07-13 21:40:12 +00:00
description : 'e.g. "--o:welcome.enable=false", See more on /etc/loolwsd/loowsd.xml. Separate params with space'
2021-03-06 20:32:31 +00:00
schema :
type : string
2022-04-10 21:57:07 +00:00
default : "--o:welcome.enable=false --o:logging.level=information --o:user_interface.mode=notebookbar --o:ssl.termination=true --o:ssl.enable=false"
2021-07-13 21:40:12 +00:00
- variable : DONT_GEN_SSL_CERT
label : "DONT_GEN_SSL_CERT"
description : "When set to true it does NOT generate an SSL cert, you have to use your own"
schema :
2021-09-30 21:58:54 +00:00
type : boolean
default : true
2021-03-06 20:32:31 +00:00
- variable : server_name
label : "Server Name"
description : "When this environment variable is set (is not “”), then its value will be used as server name in /etc/loolwsd/loolwsd.xml. Without this, CODE is not delivering a correct host for the websocket connection in case of a proxy in front of it."
schema :
type : string
2021-10-02 09:30:07 +00:00
default : 'collabora.domain.tld'
2021-11-03 17:31:18 +00:00
valid_chars : '^((([a-z\d](-?[a-z\d]){0,62})\.)*(([a-z\d](-?[a-z\d]){0,62})\.)([a-z](-?[a-z\d]){1,62})|((\d{1,3}\.){3}\d{1,3}))$'
2021-10-08 07:27:13 +00:00
2021-09-13 10:58:34 +00:00
# Include{containerConfig}
2021-05-30 14:09:07 +00:00
2021-05-22 15:59:46 +00:00
- variable : service
2021-05-30 14:09:07 +00:00
group : "Networking and Services"
2021-05-22 15:59:46 +00:00
label : "Configure Service(s)"
2021-02-15 10:31:41 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-02-15 10:31:41 +00:00
type : dict
attrs :
2021-03-03 15:51:25 +00:00
- variable : main
2021-05-22 15:59:46 +00:00
label : "Main Service"
2021-03-03 15:51:25 +00:00
description : "The Primary service on which the healthcheck runs, often the webUI"
2021-02-15 10:31:41 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-03-03 15:51:25 +00:00
type : dict
attrs :
2021-11-06 23:32:56 +00:00
# Include{serviceSelector}
2021-05-22 15:59:46 +00:00
- variable : main
label : "Main Service Port Configuration"
2021-02-15 10:31:41 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-05-22 15:59:46 +00:00
type : dict
attrs :
2021-11-14 14:32:48 +00:00
- variable : port
label : "Port"
description : "This port exposes the container port on the service"
schema :
type : int
2021-11-28 09:26:31 +00:00
default : 10105
2021-11-14 14:32:48 +00:00
required : true
2021-11-06 23:32:56 +00:00
- variable : advanced
label : "Show Advanced settings"
2021-05-24 21:01:43 +00:00
schema :
type : boolean
2021-11-06 23:32:56 +00:00
default : false
show_subquestions_if : true
subquestions :
- variable : protocol
label : "Port Type"
schema :
type : string
default : "HTTP"
enum :
- value : HTTP
description : "HTTP"
- value : "HTTPS"
description : "HTTPS"
- value : TCP
description : "TCP"
- value : "UDP"
description : "UDP"
- variable : nodePort
label : "Node Port (Optional)"
description : "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer"
schema :
type : int
min : 9000
max : 65535
- variable : targetPort
label : "Target Port"
description : "The internal(!) port on the container the Application runs on"
schema :
type : int
default : 9980
2021-09-13 16:49:14 +00:00
- variable : serviceexpert
group : "Networking and Services"
label : "Show Expert Config"
schema :
type : boolean
default : false
show_subquestions_if : true
subquestions :
- variable : hostNetwork
group : "Networking and Services"
label : "Host-Networking (Complicated)"
schema :
type : boolean
default : false
2021-10-05 10:50:21 +00:00
# Include{serviceExpert}
2021-09-13 16:49:14 +00:00
2021-09-13 10:58:34 +00:00
# Include{serviceList}
2021-08-30 13:58:30 +00:00
2021-09-13 10:58:34 +00:00
# Include{persistenceList}
2021-06-08 11:20:47 +00:00
- variable : ingress
label : ""
group : "Ingress"
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-06-08 11:20:47 +00:00
type : dict
attrs :
- variable : main
label : "Main Ingress"
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-06-08 11:20:47 +00:00
type : dict
attrs :
2021-10-05 10:50:21 +00:00
# Include{ingressDefault}
2021-08-30 13:58:30 +00:00
2021-10-05 10:50:21 +00:00
# Include{ingressTLS}
# Include{ingressTraefik}
# Include{ingressExpert}
2021-09-13 16:49:14 +00:00
2021-09-13 10:58:34 +00:00
# Include{ingressList}
2022-03-03 14:04:31 +00:00
# Include{security}
2021-11-06 20:41:31 +00:00
- variable : advancedSecurity
label : "Show Advanced Security Settings"
2021-08-28 12:27:27 +00:00
group : "Security and Permissions"
schema :
2021-11-06 20:41:31 +00:00
type : boolean
default : false
show_subquestions_if : true
subquestions :
- variable : securityContext
label : "Security Context"
2021-09-10 13:26:10 +00:00
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-11-06 20:41:31 +00:00
type : dict
attrs :
- variable : privileged
label : "Privileged mode"
schema :
type : boolean
default : false
- variable : readOnlyRootFilesystem
label : "ReadOnly Root Filesystem"
schema :
type : boolean
default : false
- variable : allowPrivilegeEscalation
label : "Allow Privilege Escalation"
schema :
type : boolean
default : true
- variable : runAsNonRoot
label : "runAsNonRoot"
schema :
type : boolean
2022-01-25 23:01:28 +00:00
default : true
2022-01-13 11:18:20 +00:00
# Include{securityContextAdvanced}
2021-09-26 18:05:21 +00:00
- variable : podSecurityContext
group : "Security and Permissions"
label : "Pod Security Context"
schema :
2022-01-21 00:35:59 +00:00
additional_attrs : true
2021-09-26 18:05:21 +00:00
type : dict
attrs :
- variable : runAsUser
label : "runAsUser"
description : "The UserID of the user running the application"
schema :
type : int
default : 104
- variable : runAsGroup
label : "runAsGroup"
2022-04-20 07:35:54 +00:00
description : "The groupID this App of the user running the application"
2021-09-26 18:05:21 +00:00
schema :
type : int
2022-01-25 23:01:28 +00:00
default : 106
2021-09-26 18:05:21 +00:00
- variable : fsGroup
label : "fsGroup"
description : "The group that should own ALL storage."
schema :
type : int
default : 568
2022-01-13 11:18:20 +00:00
# Include{podSecurityContextAdvanced}
2021-09-26 18:05:21 +00:00
2021-09-26 18:44:02 +00:00
# Include{resources}
2021-08-30 13:58:30 +00:00
2021-10-04 11:46:38 +00:00
# Include{advanced}
2021-09-13 10:58:34 +00:00
# Include{addons}