2018-09-07 09:50:03 +02:00
|
|
|
|
|
|
|
categories:
|
|
|
|
- MOLGENIS
|
|
|
|
questions:
|
|
|
|
- variable: ingress.hosts[0].name
|
|
|
|
default: "test.molgenis.org"
|
|
|
|
description: "Hostname for your stack"
|
|
|
|
type: hostname
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Load Balancing"
|
2018-09-07 09:50:03 +02:00
|
|
|
label: Hostname
|
|
|
|
- variable: molgenis.image.repository
|
|
|
|
default: "registry.hub.docker.com"
|
|
|
|
description: "Select a registry to pull from"
|
|
|
|
type: enum
|
|
|
|
options:
|
|
|
|
- "registry.hub.docker.com"
|
|
|
|
- "registry.molgenis.org"
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Version"
|
2018-09-07 09:50:03 +02:00
|
|
|
label: Registry
|
|
|
|
- variable: molgenis.image.tag
|
|
|
|
default: "stable"
|
2018-09-07 16:51:41 +02:00
|
|
|
description: "Select a MOLGENIS version (check the registry.molgenis.org or hub.docker.com for other tags)"
|
|
|
|
type: string
|
2018-09-07 09:50:03 +02:00
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Version"
|
2018-09-07 09:50:03 +02:00
|
|
|
label: Version
|
2018-09-10 11:32:14 +02:00
|
|
|
- variable: molgenis.services.opencpu.host
|
2018-09-10 11:38:51 +02:00
|
|
|
default: "localhost"
|
2018-09-07 16:51:41 +02:00
|
|
|
description: "Specify the OpenCPU cluster"
|
|
|
|
type: string
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Services"
|
2018-09-07 16:51:41 +02:00
|
|
|
label: OpenCPU cluster
|
|
|
|
- variable: molgenis.services.postgres.host
|
|
|
|
default: "localhost"
|
|
|
|
description: "Set the location of the postgres cluster"
|
|
|
|
type: string
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Services"
|
2018-09-07 16:51:41 +02:00
|
|
|
label: Postgres cluster location
|
|
|
|
- variable: molgenis.services.postgres.scheme
|
|
|
|
default: "molgenis"
|
|
|
|
description: "Set the database scheme"
|
|
|
|
type: string
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Services"
|
2018-09-07 16:51:41 +02:00
|
|
|
label: Database scheme
|
|
|
|
- variable: molgenis.services.postgres.user
|
|
|
|
default: "molgenis"
|
|
|
|
description: "Set user of the database scheme"
|
|
|
|
type: string
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Services"
|
2018-09-07 16:51:41 +02:00
|
|
|
label: Database username
|
|
|
|
- variable: molgenis.services.postgres.password
|
|
|
|
default: "molgenis"
|
|
|
|
description: "Set the password of the database scheme"
|
|
|
|
type: string
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Services"
|
2018-09-07 16:51:41 +02:00
|
|
|
label: Database password
|
2018-09-07 09:50:03 +02:00
|
|
|
- variable: molgenis.resources.limits.cpu
|
|
|
|
default: 1
|
|
|
|
description: "CPU limit for this MOLGENIS instance"
|
|
|
|
type: enum
|
|
|
|
options:
|
|
|
|
- "1"
|
|
|
|
- "2"
|
|
|
|
- "3"
|
|
|
|
- "4"
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Resources"
|
2018-09-07 09:50:03 +02:00
|
|
|
label: CPU limit
|
|
|
|
- variable: molgenis.resources.limits.memory
|
|
|
|
default: 1250Mi
|
|
|
|
description: "Memory limit for this MOLGENIS instance"
|
|
|
|
type: enum
|
|
|
|
options:
|
|
|
|
- "1250Mi"
|
|
|
|
- "1500Mi"
|
|
|
|
- "2000Mi"
|
|
|
|
- "2500Mi"
|
|
|
|
required: true
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Resources"
|
2018-09-07 09:50:03 +02:00
|
|
|
label: Memory limit
|
|
|
|
- variable: molgenis.javaOpts
|
|
|
|
default: "-Xmx1g -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled"
|
|
|
|
description: "Java runtime options for the MOLGENIS instance"
|
|
|
|
type: enum
|
|
|
|
options:
|
|
|
|
- "-Xmx1g -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled"
|
|
|
|
- "-Xmx2g -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled"
|
2018-09-10 11:32:14 +02:00
|
|
|
group: "Resources"
|
2018-09-07 09:50:03 +02:00
|
|
|
label: Java memory options
|