-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenvironment_config.yaml
59 lines (59 loc) · 1.87 KB
/
environment_config.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
58
59
attributes:
ol-domain_name:
value: "example.com"
label: "Domain name"
weight: 10
type: "text"
regex:
source: '\S'
error: "Username field cannot be empty"
ol-user_password:
value: "password"
label: "OpneLDAP password"
weight: 15
type: "password"
regex:
source: '\S'
error: "Password field cannot be empty"
ol-ca_cert:
value: ""
label: "CA cetificate"
weight: 25
description: "Copy CA certficate in pem format here."
type: "text"
regex:
source: '\S'
error: "Copy CA certficate in pem format here."
ol-slapd_cert:
value: ""
label: "ldap server certificate"
weight: 30
description: "You can use generated cert for ldap server.(PLEASE USE PUBLIC IP assigned to master node as CommonName when creting csr)."
type: "text"
regex:
source: '\S'
error: "Copy ldap server certficate in pem format here."
ol-slapd_key:
value: ""
label: "ldap server key"
weight: 30
description: "You can use generated key for ldap server."
type: "text"
regex:
source: '\S'
error: "Copy ldap server key in pem format here."
ol-first_cloud:
type: "checkbox"
weight: 35
value: true
label: "This is the first master"
description: "Please select if this is the first installation and or you plan to use single master. If this is not the first master uncheck this option and specify IPs of remote masters below"
ol-remote_master_fqdn:
value: ""
label: "Remote master servers"
description: "If you have opeldap master servers deployed eralier with this plugin, please provide ther fqdn here.Use comma as a delimiter."
weight: 40
type: "text"
regex:
source: '((([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])(,\n|,?$)|^$)'
error: "Specify valid FQDN"