Skip to content

Commit ba3087a

Browse files
author
Ravi Sankar Penta
committed
Merge pull request #296 from dcbw/more-hostsubnet-logging
Add more HostSubnet logging
2 parents 01c2431 + 42142b1 commit ba3087a

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

plugins/osdn/common.go

+6
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ type OsdnController struct {
5151
// Called by plug factory functions to initialize the generic plugin instance
5252
func (oc *OsdnController) BaseInit(registry *Registry, pluginHooks PluginHooks, multitenant bool, hostname string, selfIP string) error {
5353

54+
log.Infof("Starting with configured hostname '%s' (IP '%s')", hostname, selfIP)
55+
5456
if hostname == "" {
5557
output, err := kexec.New().Command("uname", "-n").CombinedOutput()
5658
if err != nil {
@@ -280,3 +282,7 @@ func GetPodContainerID(pod *kapi.Pod) string {
280282
}
281283
return ""
282284
}
285+
286+
func HostSubnetToString(subnet *osapi.HostSubnet) string {
287+
return fmt.Sprintf("%s [host: '%s'] [ip: '%s'] [subnet: '%s']", subnet.Name, subnet.Host, subnet.HostIP, subnet.Subnet)
288+
}

plugins/osdn/ovs/controller.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"github.com/openshift/openshift-sdn/pkg/ipcmd"
1313
"github.com/openshift/openshift-sdn/pkg/netutils"
1414
"github.com/openshift/openshift-sdn/pkg/ovs"
15+
"github.com/openshift/openshift-sdn/plugins/osdn"
1516
osapi "github.com/openshift/origin/pkg/sdn/api"
1617

1718
kapi "k8s.io/kubernetes/pkg/api"
@@ -333,7 +334,7 @@ func (plugin *ovsPlugin) GetName() string {
333334
}
334335

335336
func (plugin *ovsPlugin) AddHostSubnetRules(subnet *osapi.HostSubnet) {
336-
glog.V(5).Infof("AddHostSubnetRules for %v", subnet)
337+
glog.Infof("AddHostSubnetRules for %s", osdn.HostSubnetToString(subnet))
337338
otx := ovs.NewTransaction(BR)
338339

339340
otx.AddFlow("table=1, priority=100, tun_src=%s, actions=goto_table:5", subnet.HostIP)
@@ -347,7 +348,7 @@ func (plugin *ovsPlugin) AddHostSubnetRules(subnet *osapi.HostSubnet) {
347348
}
348349

349350
func (plugin *ovsPlugin) DeleteHostSubnetRules(subnet *osapi.HostSubnet) {
350-
glog.V(5).Infof("DeleteHostSubnetRules for %v", subnet)
351+
glog.Infof("DeleteHostSubnetRules for %s", osdn.HostSubnetToString(subnet))
351352

352353
otx := ovs.NewTransaction(BR)
353354
otx.DeleteFlows("table=1, tun_src=%s", subnet.HostIP)

plugins/osdn/registry.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,15 @@ func (registry *Registry) DeleteSubnet(nodeName string) error {
9494
return registry.oClient.HostSubnets().Delete(nodeName)
9595
}
9696

97-
func (registry *Registry) CreateSubnet(nodeName, nodeIP, subnetCIDR string) error {
97+
func (registry *Registry) CreateSubnet(nodeName, nodeIP, subnetCIDR string) (*osapi.HostSubnet, error) {
9898
hs := &osapi.HostSubnet{
9999
TypeMeta: unversioned.TypeMeta{Kind: "HostSubnet"},
100100
ObjectMeta: kapi.ObjectMeta{Name: nodeName},
101101
Host: nodeName,
102102
HostIP: nodeIP,
103103
Subnet: subnetCIDR,
104104
}
105-
_, err := registry.oClient.HostSubnets().Create(hs)
106-
return err
105+
return registry.oClient.HostSubnets().Create(hs)
107106
}
108107

109108
func (registry *Registry) WatchSubnets(receiver chan<- *HostSubnetEvent) error {

plugins/osdn/subnets.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ func (oc *OsdnController) SubnetStartMaster(clusterNetwork *net.IPNet, hostSubne
2323
if err := oc.validateNode(sub.HostIP); err != nil {
2424
// Don't error out; just warn so the error can be corrected with 'oc'
2525
log.Errorf("Failed to validate HostSubnet %s: %v", err)
26+
} else {
27+
log.Infof("Found existing HostSubnet %s", HostSubnetToString(&sub))
2628
}
2729
}
2830

@@ -44,12 +46,12 @@ func (oc *OsdnController) addNode(nodeName string, nodeIP string) error {
4446
if err != nil {
4547
return fmt.Errorf("Error allocating network for node %s: %v", nodeName, err)
4648
}
47-
err = oc.Registry.CreateSubnet(nodeName, nodeIP, sn.String())
49+
sub, err := oc.Registry.CreateSubnet(nodeName, nodeIP, sn.String())
4850
if err != nil {
4951
return fmt.Errorf("Error writing subnet %v to etcd for node %s: %v", sn, nodeName, err)
5052
}
5153

52-
log.Infof("Created HostSubnet %v for node %s (%s)", sn, nodeName, nodeIP)
54+
log.Infof("Created HostSubnet %s", HostSubnetToString(sub))
5355
return nil
5456
}
5557

@@ -68,7 +70,7 @@ func (oc *OsdnController) deleteNode(nodeName string) error {
6870
return fmt.Errorf("Error deleting subnet %v for node %q: %v", sub, nodeName, err)
6971
}
7072

71-
log.Infof("Deleted HostSubnet %v for node %s", sub, nodeName)
73+
log.Infof("Deleted HostSubnet %s", HostSubnetToString(sub))
7274
return nil
7375
}
7476

@@ -118,6 +120,7 @@ func (oc *OsdnController) initSelfSubnet() error {
118120
return fmt.Errorf("Failed to validate own HostSubnet: %v", err)
119121
}
120122

123+
log.Infof("Found local HostSubnet %s", HostSubnetToString(subnet))
121124
oc.localSubnet = subnet
122125
return nil
123126
}
@@ -155,11 +158,12 @@ func watchNodes(oc *OsdnController) {
155158
continue
156159
}
157160
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)
159162
if err != nil {
160163
log.Errorf("Error creating subnet for node %s, ip %s: %v", ev.Node.Name, sub.HostIP, err)
161164
continue
162165
}
166+
log.Infof("Updated HostSubnet %s to HostIP %s", HostSubnetToString(sub), nodeIP)
163167
} else {
164168
log.Errorf("Ignoring creating invalid node %s/%s: %v", ev.Node.Name, nodeIP, nodeErr)
165169
}

0 commit comments

Comments
 (0)