-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig-sample.toml
56 lines (48 loc) · 987 Bytes
/
config-sample.toml
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
overwrite_files = false
validity_period = "24h"
key_size = 2048
[common_fields]
common_name = "Sample Cert"
country = ["RU"]
organization = ["org"]
organization_unit = ["ou"]
locality = []
province = []
street_address = []
postal_code = []
[master_node]
alias = "master"
addresses = ["10.96.0.1"]
[[worker_node]]
alias = "wrk1"
addresses = ["node1", "192.168.1.2"]
[[etcd_node]]
alias = "etcd1"
addresses = ["ectd1", "192.168.1.2"]
[[extra_cert]]
name = "etcd"
common_name = "etcd certificate"
country = ["RU"]
organization = ["org"]
organization_unit = ["ou"]
locality = []
province = []
street_address = []
postal_code = []
validity_period = "24h"
key_size = 2048
[extra_cert.host]
alias = "etcd2"
addresses = ["etcd2", "127.0.0.1", "192.168.0.1"]
[ca]
root_dir = "cert"
common_name = "Sample Cert"
country = ["RU"]
organization = ["org"]
organization_unit = ["ou"]
locality = []
province = []
street_address = []
postal_code = []
validity_period = "24h"
key_size = 2048