|
@@ -11,6 +11,8 @@ groups:
|
|
|
description: "Configure Postgresql for nextcloud"
|
|
|
- name: "Scaling/Upgrade Policy"
|
|
|
description: "Configure how pods are replaced when configuration is upgraded"
|
|
|
+ - name: "Advanced DNS Settings"
|
|
|
+ description: "Configure DNS settings"
|
|
|
|
|
|
portals:
|
|
|
web_portal:
|
|
@@ -22,6 +24,34 @@ portals:
|
|
|
- "$variable-service.nodePort"
|
|
|
|
|
|
questions:
|
|
|
+
|
|
|
+ - variable: dnsConfig
|
|
|
+ label: "DNS Configuration"
|
|
|
+ group: "Advanced DNS Settings"
|
|
|
+ schema:
|
|
|
+ type: dict
|
|
|
+ attrs:
|
|
|
+ - variable: options
|
|
|
+ label: "DNS Options"
|
|
|
+ schema:
|
|
|
+ type: list
|
|
|
+ items:
|
|
|
+ - variable: optionsEntry
|
|
|
+ label: "Option Entry Configuration"
|
|
|
+ schema:
|
|
|
+ type: dict
|
|
|
+ attrs:
|
|
|
+ - variable: name
|
|
|
+ label: "Option Name"
|
|
|
+ schema:
|
|
|
+ type: string
|
|
|
+ required: true
|
|
|
+ - variable: value
|
|
|
+ label: "Option Value"
|
|
|
+ schema:
|
|
|
+ type: string
|
|
|
+ required: true
|
|
|
+
|
|
|
- variable: nextcloud
|
|
|
description: "Nextcloud configuration details"
|
|
|
label: "Nextcloud Configuration"
|
|
@@ -134,6 +164,31 @@ questions:
|
|
|
type: hostpath
|
|
|
required: true
|
|
|
|
|
|
+ - variable: extraAppVolumeMounts
|
|
|
+ label: "Nextcloud Extra Host Path Volumes"
|
|
|
+ group: "Storage"
|
|
|
+ schema:
|
|
|
+ type: list
|
|
|
+ items:
|
|
|
+ - variable: extraAppVolume
|
|
|
+ label: "Nextcloud Host Path Volume"
|
|
|
+ description: "Add an extra host path volume for nextcloud application"
|
|
|
+ schema:
|
|
|
+ type: dict
|
|
|
+ attrs:
|
|
|
+ - variable: mountPath
|
|
|
+ label: "Mount Path in Pod"
|
|
|
+ description: "Path where the volume will be mounted inside the pod"
|
|
|
+ schema:
|
|
|
+ type: path
|
|
|
+ required: true
|
|
|
+ - variable: hostPath
|
|
|
+ label: "Host Path"
|
|
|
+ description: "Host path"
|
|
|
+ schema:
|
|
|
+ type: hostpath
|
|
|
+ required: true
|
|
|
+
|
|
|
- variable: postgresAppVolumeMounts
|
|
|
label: "Postgres Storage"
|
|
|
group: "Storage"
|