How to configure Data
Data is configured through a YAML file called Values.yaml
by Helm.
There are three major sections, each relative to one of the applications that are distributed through Data:
- kokos
- restapi
- webup
Each section has its own configuration and has to be indented under the relative top level object.
For example, the configuration
webup:
cfg:
context: WebUP
which configures the URL context for webup, has to be placed under the top level object webup
to be passed to Data, in this fashion:
webup:
webup:
cfg:
context: WebUP
Each top level object has a boolean field called enabled
, which enables (or disables when set to false
) the installation of that application.
By default, all three applications are enabled. Using the enabled
field you can disable the installation of one or more applications.
In this example, only Restapi is installed, since kokos and webup are both disabled:
webup:
enabled: false
kokos:
enabled: false
restapi:
enabled: true
# other restapi configurations
# ...