-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
46 lines (36 loc) · 1.53 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Formulaide Helm configuration
# This file contains the default values for Formulaide development
# Unless explicitly mentioned, you can keep the default values
# General Formulaide configuration
config:
# When a user uses the 'report a problem' button, Formulaide generates an email in the user's client, that is pre-filled
# to be sent at this address:
report_email: "[email protected]" # this is the OpenSavvy Formulaide Service Desk on GitLab
# The domain name on which you will deploy Formulaide.
host: "formulaide.opensavvy.dev"
# Formulaide image
image: "registry.gitlab.com/opensavvy/formulaide/server"
version: "latest"
# Do not use 'latest' in production!
# https://gitlab.com/opensavvy/formulaide/-/releases
# Number of replicas of the Formulaide backend.
replicas: 2
mongodb:
architecture: "standalone"
auth:
# The credentials of the database user
# The Formulaide backend uses this account to communicate with the database
# If you want to change this, you need to either recreate the database, or manually switch the existing account's
# password directly through the MongoDB API.
# DO NOT USE THE DEFAULT PASSWORD IN PRODUCTION.
rootUser: "root"
rootPassword: "development-password"
# The DNS name of the database.
nameOverride: "formulaide-database"
nodeSelector:
# The database will only run on nodes that have the label 'database'
database: "true"
persistence:
size: 1Gi
# The name of the database to create in the MongoDB instance.
database: "formulaide"