-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcf-install-values.yml.envsubst
67 lines (54 loc) · 1.46 KB
/
cf-install-values.yml.envsubst
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
58
59
60
61
62
63
64
65
66
67
#@data/values
---
system_domain: ${SYS_DOMAIN}
app_domains:
#@overlay/append
- ${APPS_DOMAIN}
cf_admin_password: ${PASSWORD}
cf_blobstore:
secret_key: ${PASSWORD}
cf_db:
admin_password: ${PASSWORD}
#! this is all you have to configure if you are opting into the included database deployment
capi:
database:
password: ${PASSWORD}
#! All of the certs below should have KeyUsage that includes server and client authentication.
system_certificate:
#! This certificates and keys are base64 encoded and should be valid for *.system.cf.example.com
crt: &crt ${CERTS_sys}
key: &key ${KEYS_sys}
ca: ${CA_CRT}
uaa:
database:
password: ${PASSWORD}
admin_client_secret: ${PASSWORD}
certificate:
#! This certificate should be valid for uaa.cf-system.svc.cluster.local
crt: ${CERTS_uaa}
key: ${KEYS_uaa}
doppler:
tls:
#! This certificate should be valid for doppler.cf-system.svc.cluster.local
crt: ${CERTS_doppler}
key: ${KEYS_doppler}
eirini:
tls:
#! This certificate should be valid for eirini.cf-system.svc.cluster.local
crt: ${CERTS_eirini}
key: ${KEYS_eirini}
log_cache_ca:
crt: ${CA_CRT}
key: ${CA_KEY}
log_cache:
crt: ${CERTS_log_cache}
key: ${KEYS_log_cache}
log_cache_metrics:
crt: ${CERTS_log_cache_metrics}
key: ${KEYS_log_cache_metrics}
log_cache_gateway:
crt: ${CERTS_log_cache_gateway}
key: ${KEYS_log_cache_gateway}
log_cache_syslog:
crt: ${CERTS_log_cache_syslog}
key: ${KEYS_log_cache_syslog}