@@ -23,6 +23,8 @@ func (oc *OsdnController) SubnetStartMaster(clusterNetwork *net.IPNet, hostSubne
23
23
if err := oc .validateNode (sub .HostIP ); err != nil {
24
24
// Don't error out; just warn so the error can be corrected with 'oc'
25
25
log .Errorf ("Failed to validate HostSubnet %s: %v" , err )
26
+ } else {
27
+ log .Infof ("Found existing HostSubnet %s" , HostSubnetToString (& sub ))
26
28
}
27
29
}
28
30
@@ -44,12 +46,12 @@ func (oc *OsdnController) addNode(nodeName string, nodeIP string) error {
44
46
if err != nil {
45
47
return fmt .Errorf ("Error allocating network for node %s: %v" , nodeName , err )
46
48
}
47
- err = oc .Registry .CreateSubnet (nodeName , nodeIP , sn .String ())
49
+ sub , err : = oc .Registry .CreateSubnet (nodeName , nodeIP , sn .String ())
48
50
if err != nil {
49
51
return fmt .Errorf ("Error writing subnet %v to etcd for node %s: %v" , sn , nodeName , err )
50
52
}
51
53
52
- log .Infof ("Created HostSubnet %v for node %s (%s) " , sn , nodeName , nodeIP )
54
+ log .Infof ("Created HostSubnet %s " , HostSubnetToString ( sub ) )
53
55
return nil
54
56
}
55
57
@@ -68,7 +70,7 @@ func (oc *OsdnController) deleteNode(nodeName string) error {
68
70
return fmt .Errorf ("Error deleting subnet %v for node %q: %v" , sub , nodeName , err )
69
71
}
70
72
71
- log .Infof ("Deleted HostSubnet %v for node % s" , sub , nodeName )
73
+ log .Infof ("Deleted HostSubnet %s" , HostSubnetToString ( sub ) )
72
74
return nil
73
75
}
74
76
@@ -118,6 +120,7 @@ func (oc *OsdnController) initSelfSubnet() error {
118
120
return fmt .Errorf ("Failed to validate own HostSubnet: %v" , err )
119
121
}
120
122
123
+ log .Infof ("Found local HostSubnet %s" , HostSubnetToString (subnet ))
121
124
oc .localSubnet = subnet
122
125
return nil
123
126
}
@@ -155,11 +158,12 @@ func watchNodes(oc *OsdnController) {
155
158
continue
156
159
}
157
160
if nodeErr == nil {
158
- err = oc .Registry .CreateSubnet (ev .Node .Name , nodeIP , sub .Subnet )
161
+ _ , err : = oc .Registry .CreateSubnet (ev .Node .Name , nodeIP , sub .Subnet )
159
162
if err != nil {
160
163
log .Errorf ("Error creating subnet for node %s, ip %s: %v" , ev .Node .Name , sub .HostIP , err )
161
164
continue
162
165
}
166
+ log .Infof ("Updated HostSubnet %s to HostIP %s" , HostSubnetToString (sub ), nodeIP )
163
167
} else {
164
168
log .Errorf ("Ignoring creating invalid node %s/%s: %v" , ev .Node .Name , nodeIP , nodeErr )
165
169
}
0 commit comments