specify administrator password
This commit is contained in:
parent
bf770cc05e
commit
f1d4a6ee3b
|
@ -6,8 +6,8 @@ This chart spins up a MOLGENIS instance with HTTPD. The created containers are:
|
|||
|
||||
- MOLGENIS
|
||||
|
||||
## Versions
|
||||
You can choose from which registry you want to pull from. There are 2:
|
||||
## Provisioning
|
||||
You can choose from which registry you want to pull. There are 2 registries:
|
||||
- https://registry.molgenis.org
|
||||
- https://hub.docker.com
|
||||
|
||||
|
@ -17,7 +17,12 @@ The three properties you need to specify are:
|
|||
- ```molgenis.image.repository```
|
||||
- ```molgenis.image.name```
|
||||
- ```molgenis.image.tag```
|
||||
|
||||
|
||||
Besides determining which image you want to pull, you also have to set an administrator password. You can do this by specifying the following property.
|
||||
- ```molgenis.adminPassword```
|
||||
|
||||
If you do not specify a password. You can find a one time password in the MOLGENIS container logging.
|
||||
|
||||
## Services
|
||||
When you start MOLGENIS you need:
|
||||
- an elasticsearch instance (5.5.6)
|
||||
|
|
|
@ -18,14 +18,21 @@ questions:
|
|||
- "registry.hub.docker.com"
|
||||
- "registry.molgenis.org"
|
||||
required: true
|
||||
group: "Version"
|
||||
group: "Provisioning"
|
||||
- variable: molgenis.image.tag
|
||||
label: Version
|
||||
default: ""
|
||||
description: "Select a MOLGENIS version (check the registry.molgenis.org or hub.docker.com for released tags)"
|
||||
type: string
|
||||
required: true
|
||||
group: "Version"
|
||||
group: "Provisioning"
|
||||
- variable: molgenis.adminPassword
|
||||
label: Administrator password
|
||||
default: ""
|
||||
description: "Enter an administrator password"
|
||||
type: password
|
||||
required: false
|
||||
group: "Provisioning"
|
||||
- variable: molgenis.services.opencpu.host
|
||||
label: OpenCPU cluster
|
||||
default: "localhost"
|
||||
|
|
|
@ -21,7 +21,7 @@ molgenis:
|
|||
name: molgenis/molgenis-app
|
||||
tag: stable
|
||||
pullPolicy: Always
|
||||
adminPassword: admin
|
||||
adminPassword:
|
||||
javaOpts:
|
||||
maxHeapSpace: "1g"
|
||||
resources:
|
||||
|
|
Loading…
Reference in New Issue