(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"]]
|
||||
type: string
|
||||
default: "100Gi"
|
||||
- variable: varrun
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
hidden: true
|
||||
# Include{persistenceList}
|
||||
|
||||
- variable: ingress
|
||||
|
|
|
@ -31,3 +31,5 @@ persistence:
|
|||
type: pvc
|
||||
accessMode: ReadWriteOnce
|
||||
size: "100Gi"
|
||||
varrun:
|
||||
enabled: false
|
||||
|
|
|
@ -273,6 +273,22 @@ questions:
|
|||
|
||||
# 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}
|
||||
|
||||
- variable: ingress
|
||||
|
|
|
@ -20,6 +20,10 @@ service:
|
|||
main:
|
||||
port: 80
|
||||
|
||||
persistence:
|
||||
varrun:
|
||||
enabled: false
|
||||
|
||||
env:
|
||||
PHPLDAPADMIN_HTTPS: "false"
|
||||
PHPLDAPADMIN_TRUST_PROXY_SSL: "true"
|
||||
|
|
Loading…
Reference in New Issue