-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 822 Bytes
/
.env.example
File metadata and controls
31 lines (25 loc) · 822 Bytes
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
# The logging specification for the application
RUST_LOG=info
# The address of the management server to connect to
ADDRESS=http://127.0.0.1:8032
### Server configuration
# The connection details of the database to manage. The user must be able to:
# - create databases
# - create users
DATABASE_DEFAULT_DBNAME=postgres
DATABASE_SOCKET_DIR=/var/run/postgresql
DATABASE_HOST=
DATABASE_PORT=5432
DATABASE_USERNAME=postgres
DATABASE_PASSWORD=
DATABASE_SSL_MODE=prefer
# The address for the management server to listen on
MANAGEMENT_ADDRESS=127.0.0.1:8032
# The path to the kubeconfig file
KUBECONFIG=~/.kube/config
# The Kubernetes context to use
KUBE_CONTEXT=default
# The connection details for the database from within the cluster
KUBE_DATABASE_HOST=postgres
KUBE_DATABASE_PORT=5432
KUBE_DATABASE_SSL_MODE=prefer