1
0
Fork 0
molgenis-ops-docker-helm/molgenis/questions.yml

99 lines
2.6 KiB
YAML
Raw Normal View History

2018-09-07 09:50:03 +02:00
categories:
- MOLGENIS
questions:
- variable: ingress.hosts[0].name
2018-09-11 12:41:56 +02:00
label: Hostname
2018-09-07 09:50:03 +02:00
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
- variable: molgenis.image.repository
2018-09-11 12:41:56 +02:00
label: Registry
2018-09-07 09:50:03 +02:00
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-11 13:04:28 +02:00
group: "Provisioning"
2018-09-07 09:50:03 +02:00
- variable: molgenis.image.tag
2018-09-11 12:41:56 +02:00
label: Version
default: ""
description: "Select a MOLGENIS version (check the registry.molgenis.org or hub.docker.com for released tags)"
2018-09-07 16:51:41 +02:00
type: string
2018-09-07 09:50:03 +02:00
required: true
2018-09-11 13:04:28 +02:00
group: "Provisioning"
- variable: molgenis.adminPassword
label: Administrator password
default: ""
description: "Enter an administrator password"
type: password
2018-09-11 13:05:45 +02:00
required: true
2018-09-11 13:04:28 +02:00
group: "Provisioning"
2018-09-10 11:32:14 +02:00
- variable: molgenis.services.opencpu.host
2018-09-11 12:41:56 +02:00
label: OpenCPU cluster
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
- variable: molgenis.services.postgres.host
2018-09-11 12:41:56 +02:00
label: Postgres cluster location
2018-09-10 15:23:12 +02:00
default: "postgresql.molgenis-postgresql.svc"
2018-09-07 16:51:41 +02:00
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
- variable: molgenis.services.postgres.scheme
2018-09-11 12:41:56 +02:00
label: Database scheme
2018-09-07 16:51:41 +02:00
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
- variable: molgenis.services.postgres.user
2018-09-11 12:41:56 +02:00
label: Database username
2018-09-07 16:51:41 +02:00
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
- variable: molgenis.services.postgres.password
2018-09-11 12:41:56 +02:00
label: Database password
2018-09-07 16:51:41 +02:00
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 09:50:03 +02:00
- variable: molgenis.resources.limits.memory
2018-09-11 12:41:56 +02:00
label: Container memory limit
2018-09-07 09:50:03 +02:00
default: 1250Mi
description: "Memory limit for this MOLGENIS container"
2018-09-07 09:50:03 +02:00
type: enum
options:
- "1250Mi"
- "2500Mi"
required: true
2018-09-10 11:32:14 +02:00
group: "Resources"
- variable: molgenis.resources.requests.memory
2018-09-11 12:41:56 +02:00
label: Container memory reservation
default: 1250Mi
description: "Memory reservation for this MOLGENIS container"
type: enum
options:
- "1250Mi"
- "2500Mi"
required: true
group: "Resources"
- variable: molgenis.javaOpts.maxHeapSpace
2018-09-11 12:41:56 +02:00
label: Maximum heap space (JVM)
default: "1g"
description: "Maximum heap space MOLGENIS container JVM. Please not this should fit in your container memory limit"
2018-09-07 09:50:03 +02:00
type: enum
options:
- "1g"
- "2g"
2018-09-11 12:41:56 +02:00
group: "Resources"