added persistence to questions and bumped chart
This commit is contained in:
parent
88134dbccb
commit
04bd9cd653
|
@ -2,7 +2,7 @@ apiVersion: v1
|
|||
appVersion: "1.0"
|
||||
description: MOLGENIS - helm stack (in BETA)
|
||||
name: molgenis-beta
|
||||
version: 0.1.0
|
||||
version: 0.2.0
|
||||
sources:
|
||||
- https://git.webhosting.rug.nl/molgenis/molgenis-ops-docker-helm.git
|
||||
icon: https://git.webhosting.rug.nl/molgenis/molgenis-ops-docker-helm/raw/master/molgenis/catalogIcon-molgenis.svg
|
|
@ -81,7 +81,7 @@ questions:
|
|||
- variable: molgenis.resources.requests.memory
|
||||
label: Container memory reservation
|
||||
default: 1250Mi
|
||||
description: "Memory reservation for this MOLGENIS container"
|
||||
description: "Memory reservation for this MOLGENIS container (must fit in the selected memory limit for the container)"
|
||||
type: enum
|
||||
options:
|
||||
- "1250Mi"
|
||||
|
@ -96,4 +96,18 @@ questions:
|
|||
options:
|
||||
- "1g"
|
||||
- "2g"
|
||||
group: "Resources"
|
||||
group: "Resources"
|
||||
- variable: molgenis.persistence.enabled
|
||||
default: false
|
||||
description: "Do you want to use persistence"
|
||||
type: boolean
|
||||
required: true
|
||||
group: "Persistence"
|
||||
label: Persistence
|
||||
show_subquestion_if: true
|
||||
subquestions:
|
||||
- variable: molgenis.persistence.size
|
||||
default: "30Gi"
|
||||
description: "Size of MOLGENIS filestore (not the database size)"
|
||||
type: string
|
||||
label: Size filestore
|
Loading…
Reference in New Issue