-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb-server-secret.yaml
43 lines (36 loc) · 1.98 KB
/
db-server-secret.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
apiVersion: v1
kind: Secret
metadata:
name: bold-db-secret
namespace: bold-services
type: Opaque
stringData:
# Type of database server can be used for configuring the Bold BI. Eg: mssql, mysql and postgresql
BOLD_SERVICES_DB_TYPE: ""
# Name of the Database Server
BOLD_SERVICES_DB_HOST: ""
# The system will use the following default port numbers based on the database server type.
# PostgrSQL – 5234 and MySQL -3306
# Please specify the port number for your database server if it is configured on a different port.
# For MS SQL Server, this parameter is not necessary.
BOLD_SERVICES_DB_PORT: ""
# Username for the database server
# Please refer to this documentation for information on the user's permissions.
# https://help.boldbi.com/embedded-bi/faq/what-are-the-database-permissions-required-to-set-up-bold-bi-embedded/
BOLD_SERVICES_DB_USER: ""
# The database user's password
BOLD_SERVICES_DB_PASSWORD: ""
# If the database name is not specified, the system will create a new database called bold services.
# If you specify a database name, it should already exist on the server.
BOLD_SERVICES_DB_NAME: ""
# For PostgreSQL DB Servers, this is an optional parameter.
# The system will use the database name postgres by default.
# If your database server uses a different default database, please provide it here.
BOLD_SERVICES_POSTGRESQL_MAINTENANCE_DB: ""
# If your database server requires additional connection string parameters, include them here
# Connection string parameters can be found in the official document.
# My SQL: https://dev.mysql.com/doc/connector-net/en/connector-net-8-0-connection-options.html
# PostgreSQL: https://www.npgsql.org/doc/connection-string-parameters.html
# MS SQL: https://docs.microsoft.com/en-us/dotnet/api/system.data.sqlclient.sqlconnection.connectionstring
# Note: A semicolon(;) should be used to separate multiple parameters.
BOLD_SERVICES_DB_ADDITIONAL_PARAMETERS: ""