2021-10-01 12:20:59 +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-01 12:20:59 +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}
|
|
|
|
# Include{containerBasic}
|
|
|
|
# Include{containerAdvanced}
|
2021-10-01 12:20:59 +00:00
|
|
|
# Include{containerConfig}
|
2023-04-30 19:15:20 +00:00
|
|
|
# Include{podOptions}
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: admin
|
|
|
|
group: "App Configuration"
|
|
|
|
label: "Admin Credentials"
|
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +00:00
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: username
|
|
|
|
label: "username"
|
|
|
|
schema:
|
|
|
|
type: string
|
2022-11-30 19:30:01 +00:00
|
|
|
valid_chars: '^(?!^admin$).*$'
|
2021-10-01 12:20:59 +00:00
|
|
|
required: true
|
|
|
|
- variable: password
|
|
|
|
label: "password"
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
2022-06-26 09:22:44 +00:00
|
|
|
private: true
|
2023-12-31 17:50:16 +00:00
|
|
|
min_length: 8
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: email
|
|
|
|
label: "email"
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
- variable: config
|
|
|
|
group: "App Configuration"
|
|
|
|
label: "Admin Configuration"
|
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +00:00
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: APP_NAME
|
|
|
|
label: "APP_NAME"
|
|
|
|
schema:
|
|
|
|
type: string
|
2021-10-01 13:34:05 +00:00
|
|
|
default: "Gitea"
|
2021-10-01 12:20:59 +00:00
|
|
|
required: true
|
|
|
|
- variable: RUN_MODE
|
|
|
|
label: "RUN_MODE"
|
|
|
|
schema:
|
|
|
|
type: string
|
2021-10-01 13:34:05 +00:00
|
|
|
default: "prod"
|
|
|
|
enum:
|
|
|
|
- value: "prod"
|
|
|
|
description: "Production"
|
|
|
|
- value: "dev"
|
|
|
|
description: "Development"
|
|
|
|
- value: "test"
|
|
|
|
description: "Testing"
|
2022-08-13 17:36:29 +00:00
|
|
|
- variable: ALLOWED_HOST_LIST
|
|
|
|
label: "ALLOWED_HOST_LIST"
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: "127.0.0.1"
|
|
|
|
required: true
|
2022-11-30 19:30:01 +00:00
|
|
|
- variable: nodeIP
|
|
|
|
label: Node IP
|
|
|
|
description: Used to generate configuration, when installed without ingress
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
$ref:
|
|
|
|
- "definitions/nodeIP"
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: customConfig
|
|
|
|
group: "App Configuration"
|
|
|
|
label: "Custom Configuration parameters"
|
|
|
|
schema:
|
|
|
|
type: list
|
|
|
|
default: []
|
|
|
|
items:
|
2023-10-28 12:07:52 +00:00
|
|
|
# Do not fix this typo, it will break
|
|
|
|
# current installations
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: catagoryItem
|
2023-10-28 12:07:52 +00:00
|
|
|
label: "Category"
|
2021-10-01 12:20:59 +00:00
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +00:00
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: name
|
2023-10-28 12:07:52 +00:00
|
|
|
label: "Config Category Name"
|
2021-10-01 12:20:59 +00:00
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
- variable: keys
|
|
|
|
label: "Configuration Parameters"
|
|
|
|
schema:
|
|
|
|
type: list
|
|
|
|
default: []
|
|
|
|
items:
|
|
|
|
- variable: configItem
|
|
|
|
label: "parameter"
|
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +00:00
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: name
|
|
|
|
label: "Parameter Name"
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
- variable: value
|
|
|
|
label: "Parameter Value"
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
2022-08-08 21:25:02 +00:00
|
|
|
# Include{serviceRoot}
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: main
|
|
|
|
label: "Main Service"
|
|
|
|
description: "The Primary service on which the healthcheck runs, often the webUI"
|
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +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-01 12:20:59 +00:00
|
|
|
- variable: main
|
|
|
|
label: "Main Service Port Configuration"
|
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +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: 10037
|
2021-11-14 14:32:48 +00:00
|
|
|
required: true
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: ssh
|
|
|
|
label: "SSH Service"
|
|
|
|
description: "The SSH service"
|
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +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-01 12:20:59 +00:00
|
|
|
- variable: ssh
|
2021-11-08 14:44:33 +00:00
|
|
|
label: "SSH Service Port Configuration"
|
2021-10-01 12:20:59 +00:00
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +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
|
|
|
|
default: 2222
|
|
|
|
required: true
|
2022-08-08 21:25:02 +00:00
|
|
|
# Include{serviceExpertRoot}
|
2021-10-05 10:50:21 +00:00
|
|
|
# Include{serviceExpert}
|
2021-10-01 12:20:59 +00:00
|
|
|
# Include{serviceList}
|
2022-08-08 21:25:02 +00:00
|
|
|
# Include{persistenceRoot}
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: data
|
|
|
|
label: "App data Storage"
|
|
|
|
description: "Stores the Application Configuration."
|
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +00:00
|
|
|
type: dict
|
|
|
|
attrs:
|
2021-11-06 20:41:31 +00:00
|
|
|
# Include{persistenceBasic}
|
2021-10-01 12:20:59 +00:00
|
|
|
# Include{persistenceList}
|
2022-08-08 21:25:02 +00:00
|
|
|
# Include{ingressRoot}
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: main
|
|
|
|
label: "Main Ingress"
|
|
|
|
schema:
|
2022-01-21 00:35:59 +00:00
|
|
|
additional_attrs: true
|
2021-10-01 12:20:59 +00:00
|
|
|
type: dict
|
|
|
|
attrs:
|
2021-10-05 10:50:21 +00:00
|
|
|
# Include{ingressDefault}
|
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}
|
|
|
|
- variable: runAsUser
|
|
|
|
label: "runAsUser"
|
|
|
|
description: "The UserID of the user running the application"
|
2021-11-06 20:41:31 +00:00
|
|
|
schema:
|
2023-03-01 08:30:36 +00:00
|
|
|
type: int
|
|
|
|
default: 1000
|
2023-04-30 19:15:20 +00:00
|
|
|
- variable: runAsGroup
|
|
|
|
label: "runAsGroup"
|
|
|
|
description: "The groupID of the user running the application"
|
|
|
|
schema:
|
|
|
|
type: int
|
|
|
|
default: 1000
|
2023-03-01 08:30:36 +00:00
|
|
|
# Include{securityContextContainer}
|
|
|
|
# Include{securityContextAdvanced}
|
|
|
|
# Include{securityContextPod}
|
2021-10-01 12:20:59 +00:00
|
|
|
- variable: fsGroup
|
|
|
|
label: "fsGroup"
|
|
|
|
description: "The group that should own ALL storage."
|
|
|
|
schema:
|
|
|
|
type: int
|
2022-03-31 20:53:44 +00:00
|
|
|
default: 1000
|
2021-10-01 12:20:59 +00:00
|
|
|
# Include{resources}
|
2023-12-21 13:20:12 +00:00
|
|
|
# Include{postgresql}
|
2021-10-04 11:46:38 +00:00
|
|
|
# Include{advanced}
|
2021-10-01 12:20:59 +00:00
|
|
|
# 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}
|