(fix) Disable varrun for Lychee and phpldapadmin (#1037)
* disable varrun for lychee * disable varrun for phpldapadmin
This commit is contained in:
parent
8418b3e7e7
commit
8b4c2fbf47
|
@ -390,6 +390,15 @@ questions:
|
||||||
show_if: [["type", "=", "pvc"]]
|
show_if: [["type", "=", "pvc"]]
|
||||||
type: string
|
type: string
|
||||||
default: "100Gi"
|
default: "100Gi"
|
||||||
|
- variable: varrun
|
||||||
|
schema:
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: enabled
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
hidden: true
|
||||||
# Include{persistenceList}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -31,3 +31,5 @@ persistence:
|
||||||
type: pvc
|
type: pvc
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: "100Gi"
|
size: "100Gi"
|
||||||
|
varrun:
|
||||||
|
enabled: false
|
||||||
|
|
|
@ -273,6 +273,22 @@ questions:
|
||||||
|
|
||||||
# Include{serviceList}
|
# Include{serviceList}
|
||||||
|
|
||||||
|
- variable: persistence
|
||||||
|
label: "Integrated Persistent Storage"
|
||||||
|
description: "Integrated Persistent Storage"
|
||||||
|
group: "Storage and Persistence"
|
||||||
|
schema:
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: varrun
|
||||||
|
schema:
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: enabled
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
hidden: true
|
||||||
# Include{persistenceList}
|
# Include{persistenceList}
|
||||||
|
|
||||||
- variable: ingress
|
- variable: ingress
|
||||||
|
|
|
@ -20,6 +20,10 @@ service:
|
||||||
main:
|
main:
|
||||||
port: 80
|
port: 80
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
varrun:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PHPLDAPADMIN_HTTPS: "false"
|
PHPLDAPADMIN_HTTPS: "false"
|
||||||
PHPLDAPADMIN_TRUST_PROXY_SSL: "true"
|
PHPLDAPADMIN_TRUST_PROXY_SSL: "true"
|
||||||
|
|
Loading…
Reference in New Issue