Skip to content

Commit 9404e46

Browse files
author
Vipin Jain
committed
add list of eps in network oper/inspect
1 parent 26ca0bc commit 9404e46

File tree

6 files changed

+62
-128
lines changed

6 files changed

+62
-128
lines changed

Godeps/Godeps.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/client/contivModel.js

+12-111
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/client/contivModelClient.go

+7-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/contivModel.go

+7-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/contivmodel/network.json

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netmaster/objApi/apiController.go

+28-2
Original file line numberDiff line numberDiff line change
@@ -361,9 +361,8 @@ func (ac *APIController) EndpointGetOper(endpoint *contivModel.EndpointInspect)
361361
// TODO avoid linear read
362362
epCfgs, err := readEp.ReadAll()
363363
if err == nil {
364-
for idx, epCfg := range epCfgs {
364+
for _, epCfg := range epCfgs {
365365
ep := epCfg.(*mastercfg.CfgEndpointState)
366-
log.Infof("read ep key[%d] %s, populating state \n", idx, ep.ID)
367366
if strings.Contains(ep.ContainerID, endpoint.Oper.Key) {
368367
endpoint.Oper.Network = ep.NetID
369368
endpoint.Oper.Name = ep.ContName
@@ -734,6 +733,33 @@ func (ac *APIController) NetworkGetOper(network *contivModel.NetworkInspect) err
734733
network.Oper.NumEndpoints = nwCfg.EpCount
735734
network.Oper.PktTag = nwCfg.PktTag
736735

736+
readEp := &mastercfg.CfgEndpointState{}
737+
readEp.StateDriver = stateDriver
738+
epCfgs, err := readEp.ReadAll()
739+
if err == nil {
740+
for _, epCfg := range epCfgs {
741+
ep := epCfg.(*mastercfg.CfgEndpointState)
742+
if ep.NetID == networkID {
743+
epOper := contivModel.EndpointOper{}
744+
epOper.Network = ep.NetID
745+
epOper.Name = ep.ContName
746+
epOper.ServiceName = ep.ServiceName
747+
epOper.EndpointGroupID = ep.EndpointGroupID
748+
epOper.EndpointGroupKey = ep.EndpointGroupKey
749+
epOper.AttachUUID = ep.AttachUUID
750+
epOper.IpAddress = []string{ep.IPAddress, ep.IPv6Address}
751+
epOper.MacAddress = ep.MacAddress
752+
epOper.HomingHost = ep.HomingHost
753+
epOper.IntfName = ep.IntfName
754+
epOper.VtepIP = ep.VtepIP
755+
epOper.Labels = fmt.Sprintf("%s", ep.Labels)
756+
epOper.ContainerID = ep.ContainerID
757+
network.Oper.Endpoints = append(network.Oper.Endpoints, epOper)
758+
} else {
759+
log.Infof("Unmatch: ep's netId '%s' with '%s' ", ep.NetID, networkID)
760+
}
761+
}
762+
}
737763
return nil
738764
}
739765

0 commit comments

Comments
 (0)