blob: a3a6dba0c13159b3460b78d2f2edc28b5ffd7728 (
plain)
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
  | 
# Sovrabase Configuration Example
# Copy this file to config.yaml and adjust the values
# API Configuration
api:
  api_addr: "0.0.0.0:8080"
  cors_allow:
    - "http://localhost:3000"
    - "https://example.com"
  domain: "api.example.com"
# Orchestrator Configuration
orchestrator:
  type: "docker"
  docker_host: "unix:///var/run/docker.sock"
  kube_api: "https://kubernetes.default.svc"
  kube_token: "your-kubernetes-api-token"
  namespace: "sovrabase-databases"
# Internal Database Configuration
internal_db:
  manager: "sqlite"
  uri: "/data/sovrabase.db"
# Super User Configuration
super_user:
  username: "admin"
  password: "CHANGE-THIS-TO-A-SECURE-PASSWORD"
  email: "admin@example.com"
# Region
region: "eu-west-1"
  |