-
Notifications
You must be signed in to change notification settings - Fork 6
/
app-config.local.yaml
57 lines (49 loc) · 1.52 KB
/
app-config.local.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
47
48
49
50
51
52
53
54
55
56
57
# Used in local develompment setup
app:
baseUrl: http://localhost:3000
backend:
baseUrl: http://localhost:7007
cors:
origin: http://localhost:3000
methods: [GET, POST, PUT, DELETE]
credentials: true
database:
client: better-sqlite3
connection: ":memory:"
catalog:
locations:
- type: file
target: ../../${CATALOG_LOCAL_PATH}
# Uncomment to use defintions files from apps repo
# - type: url
# target: https://github.com/operate-first/apps/blob/master/service-catalog/all.yaml
auth:
environment: development
providers:
github:
development:
clientId: ${AUTH_GITHUB_CLIENT_ID}
clientSecret: ${AUTH_GITHUB_CLIENT_SECRET}
kubernetes:
serviceLocatorMethod:
type: "multiTenant"
clusterLocatorMethods:
- type: "config"
clusters:
# This is using kubectl proxy which is started in the yarn dev script
- url: http://localhost:8001
name: dev-cluster
authProvider: "serviceAccount"
skipTLSVerify: false
skipMetricsLookup: false
# If you are not signed in to your cluster, use a Service Account token
# serviceAccountToken: ${SERVICE_ACCOUNT_TOKEN}
# Optional values
# dashboardUrl: <dashboard_url>
# dashboardApp: <dashboard_type> # Supported dashboards: standard, rancher, openshift, gke, aks, eks
webTerminal:
webSocketUrl: "wss://example.com:3000"
restServerUrl: "https://example.com/rest:3000"
ocm:
cluster: 'dev-cluster'
searchInitialDelay: 5