Initialization Variables

When a Reemo instance is installed and the database is initialized, some variables can be preconfigured to preset the interface and the Reemo environment. Add these variables under all, or under the group that will initialize the database.

Password Policy

The INIT_MINIMUM_PASSWORD_LENGTH and INIT_PASSWORD_REQUIRE_* variables let you define the password policy applied when the database is initialized.

INIT_MINIMUM_PASSWORD_LENGTH: "8"
INIT_PASSWORD_REQUIRE_LETTERS: "false"
INIT_PASSWORD_REQUIRE_DIGITS: "false"
INIT_PASSWORD_REQUIRE_SPECIALCHAR: "false"

See also

Database initialization — Running the database initialization (INIT_DB=true) that applies this policy.

RELAYWS Servers

The INIT_RELAYWS variable lets you declare one or more RELAYWS servers so they are automatically registered when the database is initialized.

INIT_RELAYWS:
    relayws1:
        type: "WS_SWARM or WS_KUBERNETES"
        url: "<URL reachable by users>"
        ip:
            - "<RELAYWS server IP, reachable by the API>"

Note

Always name RELAYWS servers relayws1, relayws2, and so on.

See also

Installation — Deploying the RELAYWS environment declared here.

Provisioning Zones

The INIT_PROVISION variable lets you declare one or more provisioning zones so they are automatically registered when the database is initialized, instead of being added manually afterwards.

INIT_PROVISION:
    provision1:
        relayws: "relayws1"
        type: "SWARM"
        ip:
            - "192.168.10.100"
            - "192.168.10.101"
            - "192.168.10.102"

Note

Always name Provision servers provision1, provision2, and so on. The relayws key is only needed when the zone uses a RELAYWS server declared above.

See also

Installation — Deploying the PROVISION environment for the zone declared here.