Skip to content

Commit 9d36799

Browse files
committed
adding endpoint labels
1 parent 71d9991 commit 9d36799

File tree

3 files changed

+56
-26
lines changed

3 files changed

+56
-26
lines changed

netmaster/master/api.go

+32-4
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ type SvcProvUpdateRequest struct {
7979
Tenant string
8080
Network string
8181
Event string
82+
Container string
8283
}
8384

8485
//SvcProvUpdateResponse is service provider update request from netplugin
@@ -326,24 +327,55 @@ func ServiceProviderUpdateHandler(w http.ResponseWriter, r *http.Request, vars m
326327

327328
log.Infof("Recieved ServiceProviderUpdate {%+v}", svcProvUpdReq)
328329

330+
stateDriver, err := utils.GetStateDriver()
331+
if err != nil {
332+
return nil, err
333+
}
334+
329335
if svcProvUpdReq.Event == "start" {
330336
//Received container start event from netplugin. Check if the Provider
331337
//matches any service and perform service provider update if there is a matching
332338
//service.
339+
340+
epCfg := &mastercfg.CfgEndpointState{}
341+
epCfg.StateDriver = stateDriver
342+
nwID := svcProvUpdReq.Network + "." + svcProvUpdReq.Tenant
343+
epCfg.ID = getEpName(nwID, &intent.ConfigEP{Container: svcProvUpdReq.Container})
344+
345+
err = epCfg.Read(epCfg.ID)
346+
if err != nil {
347+
return nil, err
348+
}
349+
333350
provider := &mastercfg.Provider{}
334351
provider.IPAddress = svcProvUpdReq.IPAddress
335352
provider.Tenant = svcProvUpdReq.Tenant
336353
provider.Network = svcProvUpdReq.Network
337354
provider.ContainerID = svcProvUpdReq.ContainerID
338355
provider.Labels = make(map[string]string)
356+
357+
if epCfg.Labels == nil {
358+
//endpoint cfg doesnt have labels
359+
epCfg.Labels = make(map[string]string)
360+
}
361+
339362
for k, v := range svcProvUpdReq.Labels {
340363
provider.Labels[k] = v
364+
epCfg.Labels[k] = v
365+
}
366+
367+
err = epCfg.Write()
368+
if err != nil {
369+
log.Errorf("error writing ep config. Error: %s", err)
370+
return nil, err
341371
}
372+
342373
providerID := getProviderID(provider)
343374
providerDbID := getProviderDbID(provider)
344375
if providerID == "" || providerDbID == "" {
345376
return nil, fmt.Errorf("Invalid ProviderID from providerInfo:{%v}", provider)
346377
}
378+
347379
//update provider db
348380
mastercfg.ProviderDb[providerDbID] = provider
349381
for serviceID, service := range mastercfg.ServiceLBDb {
@@ -396,10 +428,6 @@ func ServiceProviderUpdateHandler(w http.ResponseWriter, r *http.Request, vars m
396428
}
397429
delete(service.Providers, providerID)
398430

399-
stateDriver, err := utils.GetStateDriver()
400-
if err != nil {
401-
return nil, err
402-
}
403431
serviceLbState := &mastercfg.CfgServiceLBState{}
404432
serviceLbState.StateDriver = stateDriver
405433
err = serviceLbState.Read(serviceID)

netmaster/mastercfg/endpointstate.go

100644100755
+11-10
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,17 @@ import (
2626
// vlans with ovs. The state is stored as Json objects.
2727
type CfgEndpointState struct {
2828
core.CommonState
29-
NetID string `json:"netID"`
30-
ContName string `json:"contName"`
31-
ServiceName string `json:"serviceName"`
32-
EndpointGroupID int `json:"endpointGroupId"`
33-
AttachUUID string `json:"attachUUID"`
34-
IPAddress string `json:"ipAddress"`
35-
MacAddress string `json:"macAddress"`
36-
HomingHost string `json:"homingHost"`
37-
IntfName string `json:"intfName"`
38-
VtepIP string `json:"vtepIP"`
29+
NetID string `json:"netID"`
30+
ContName string `json:"contName"`
31+
ServiceName string `json:"serviceName"`
32+
EndpointGroupID int `json:"endpointGroupId"`
33+
AttachUUID string `json:"attachUUID"`
34+
IPAddress string `json:"ipAddress"`
35+
MacAddress string `json:"macAddress"`
36+
HomingHost string `json:"homingHost"`
37+
IntfName string `json:"intfName"`
38+
VtepIP string `json:"vtepIP"`
39+
Labels map[string]string `json:"labels"`
3940
}
4041

4142
// Write the state.

netplugin/netd.go

+13-12
Original file line numberDiff line numberDiff line change
@@ -726,11 +726,11 @@ func handleDockerEvents(event *dockerclient.Event, ec chan error, args ...interf
726726
return
727727
}
728728
if event.ID != "" {
729-
labelMap := getLabelsFromContainerInspect(event.ID, &containerInfo)
729+
labelMap := getLabelsFromContainerInspect(&containerInfo)
730730

731-
containerTenant := getTenantFromContainerInspect(event.ID, &containerInfo)
732-
network, ipAddress := getEpNetworkInfoFromContainerInspect(event.ID, &containerInfo)
733-
container:= getContainerFromContainerInspect(event.ID,&containerInfo)
731+
containerTenant := getTenantFromContainerInspect(&containerInfo)
732+
network, ipAddress := getEpNetworkInfoFromContainerInspect(&containerInfo)
733+
container := getContainerFromContainerInspect(&containerInfo)
734734
if ipAddress != "" {
735735
//Create provider info
736736
networkname := strings.Split(network, "/")[0]
@@ -740,7 +740,7 @@ func handleDockerEvents(event *dockerclient.Event, ec chan error, args ...interf
740740
providerUpdReq.Network = networkname
741741
providerUpdReq.Event = "start"
742742
providerUpdReq.Container = container
743-
providerUpdReq.Labels = make(map[string]string)
743+
providerUpdReq.Labels = make(map[string]string)
744744

745745
for k, v := range labelMap {
746746
providerUpdReq.Labels[k] = v
@@ -774,15 +774,15 @@ func handleDockerEvents(event *dockerclient.Event, ec chan error, args ...interf
774774
}
775775

776776
//getLabelsFromContainerInspect returns the labels associated with the container
777-
func getLabelsFromContainerInspect(containerID string, containerInfo *types.ContainerJSON) map[string]string {
777+
func getLabelsFromContainerInspect(containerInfo *types.ContainerJSON) map[string]string {
778778
if containerInfo != nil && containerInfo.Config != nil {
779779
return containerInfo.Config.Labels
780780
}
781781
return nil
782782
}
783783

784784
//getTenantFromContainerInspect returns the tenant the container belongs to.
785-
func getTenantFromContainerInspect(containerID string, containerInfo *types.ContainerJSON) string {
785+
func getTenantFromContainerInspect(containerInfo *types.ContainerJSON) string {
786786
tenant := "default"
787787
if containerInfo != nil && containerInfo.NetworkSettings != nil {
788788
for network := range containerInfo.NetworkSettings.Networks {
@@ -796,7 +796,7 @@ func getTenantFromContainerInspect(containerID string, containerInfo *types.Cont
796796
}
797797

798798
/*getEpNetworkInfoFromContainerInspect inspects the network info from containerinfo returned by dockerclient*/
799-
func getEpNetworkInfoFromContainerInspect(containerID string, containerInfo *types.ContainerJSON) (string, string) {
799+
func getEpNetworkInfoFromContainerInspect(containerInfo *types.ContainerJSON) (string, string) {
800800
var networkName string
801801
var IPAddress string
802802

@@ -813,12 +813,13 @@ func getEpNetworkInfoFromContainerInspect(containerID string, containerInfo *typ
813813
return networkName, IPAddress
814814
}
815815

816-
func getContainerFromContainerInspect(event.ID,&containerInfo) string {
816+
func getContainerFromContainerInspect(containerInfo *types.ContainerJSON) string {
817+
817818
container := ""
818819
if containerInfo != nil && containerInfo.NetworkSettings != nil {
819-
for _ , endpoint := range containerInfo.NetworkSettings.Networks {
820-
container = endpoint.EndpointID
821-
}
820+
for _, endpoint := range containerInfo.NetworkSettings.Networks {
821+
container = endpoint.EndpointID
822+
}
822823
}
823824
return container
824825

0 commit comments

Comments
 (0)