-
Notifications
You must be signed in to change notification settings - Fork 6
/
app-config.dev.yaml
50 lines (44 loc) · 1.44 KB
/
app-config.dev.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
# Used in dev setup on a k8s/openshift cluster
app:
baseUrl: <url>
backend:
baseUrl: <url>
database:
client: pg
connection:
host: ${host}
user: ${user}
password: ${password}
port: ${port}
# https://node-postgres.com/features/ssl
# you can set the sslmode configuration option via the `PGSSLMODE` environment variable
# see https://www.postgresql.org/docs/current/libpq-ssl.html Table 33.1. SSL Mode Descriptions (e.g. require)
ssl:
ca:
$file: /mnt/certs/ca.crt
cors:
origin: <url>
catalog:
locations:
- type: url
target: https://github.com/operate-first/apps/blob/master/service-catalog/all.yaml
kubernetes:
serviceLocatorMethod:
type: "multiTenant"
clusterLocatorMethods:
- type: "config"
clusters:
- url: https://openshift.default.svc.cluster.local
name: dev-cluster
authProvider: "serviceAccount"
skipTLSVerify: true
skipMetricsLookup: false
# Uncomment this if you want to use a different url other then the local one
# for local cluster you don't need to provide service account token
# serviceAccountToken: ${SERVICE_ACCOUNT_TOKEN}
# Optional values
# dashboardUrl: <dashboard_url>
# dashboardApp: <dashboard_type> # Supported dashboards: standard, rancher, openshift, gke, aks, eks
ocm:
cluster: 'dev-cluster'
searchInitialDelay: 30