Skip to content

Commit b133b9f

Browse files
authored
Merge pull request #19 from gzchen008/develop
Closes #15
2 parents 4954fcb + 556363e commit b133b9f

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ sudo ./install.sh
7575
- Configuration file:conf/install.properties
7676

7777
```
78-
ip=[@HOSTIP]
78+
ip=
7979
8080
# Token added to the cluster, generated by the master script
81-
token=[#join-token]
81+
token=
8282
8383
# Master ApiServer IP/VIP
84-
master=[#master-vip]
84+
master=
8585
```
8686

8787
- Install Command
@@ -101,17 +101,17 @@ sudo ./install.sh install v1.16.6 master_node=true
101101

102102
```
103103
# master HA VIP
104-
master_vip=[#MASTER_VIP]
104+
master_vip=
105105
106106
# masterIP and VIP
107-
master_ip_list=[#MASTER_IP_LIST]
107+
master_ip_list=
108108
109109
# local IP
110-
local_ip=[@HOSTIP]
110+
local_ip=
111111
112112
# etcd list, eg: https://ip1:port1,https://ip2:port2,https://ip3:port3;
113113
# Please note that the port of dockin-etcd is 5379
114-
etcd_list=[#ETCD_LIST]
114+
etcd_list=
115115
```
116116

117117
- ETCD Certificate path:/etc/kubernetes/pki/etcd/

dockin-etcd/conf/install.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# the License.
1313
#
1414
# IP, :server_list=(ip1 ip2 ip3)
15-
server_list=([#dockin_ETCD_SERVER_LIST])
15+
server_list=

dockin-master/conf/install.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
#
1414

1515
# master HA VIP
16-
master_vip=[#MASTER_VIP]
16+
master_vip=
1717
# masterIP and VIP
18-
master_ip_list=[#MASTER_IP_LIST]
18+
master_ip_list=
1919
# IP
20-
local_ip=[@HOSTIP]
20+
local_ip=
2121
# etcd list, eg: https://ip1:port1,https://ip2:port2,https://ip3:port3;
22-
etcd_list=[#ETCD_LIST]
22+
etcd_list=

dockin-worker/conf/install.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
#
1818
# Node IP
19-
ip=[@HOSTIP]
19+
ip=
2020

2121
# master,Node join
2222
# token,master
23-
token=[#join-token]
23+
token=
2424

2525
# Master ApiServer IP/VIP
26-
master=[#master-vip]
26+
master=

0 commit comments

Comments
 (0)