Skip to content

Commit 26a9c74

Browse files
author
Joji Mekkatt
committed
Populate pod name into endpoint state
1 parent 6eca380 commit 26a9c74

File tree

7 files changed

+40
-32
lines changed

7 files changed

+40
-32
lines changed

mgmtfn/k8splugin/driver.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ type epSpec struct {
4545
Network string `json:"network,omitempty"`
4646
Group string `json:"group,omitempty"`
4747
EndpointID string `json:"endpointid,omitempty"`
48+
Name string `json:"name,omitempty"`
4849
}
4950

5051
// epAttr contains the assigned attributes of the created ep
@@ -128,10 +129,11 @@ func createEP(req *epSpec) (*epAttr, error) {
128129

129130
// Build endpoint request
130131
mreq := master.CreateEndpointRequest{
131-
TenantName: req.Tenant,
132-
NetworkName: req.Network,
133-
ServiceName: req.Group,
134-
EndpointID: req.EndpointID,
132+
TenantName: req.Tenant,
133+
NetworkName: req.Network,
134+
ServiceName: req.Group,
135+
EndpointID: req.EndpointID,
136+
EPCommonName: req.Name,
135137
ConfigEP: intent.ConfigEP{
136138
Container: req.EndpointID,
137139
Host: pluginHost,
@@ -360,6 +362,7 @@ func getEPSpec(pInfo *cniapi.CNIPodAttr) (*epSpec, error) {
360362
resp.Network = netw
361363
resp.Group = epg
362364
resp.EndpointID = pInfo.InfraContainerID
365+
resp.Name = pInfo.Name
363366

364367
return &resp, nil
365368
}

netmaster/master/api.go

+16-15
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,12 @@ type AddressReleaseRequest struct {
5151

5252
// CreateEndpointRequest has the endpoint create request from netplugin
5353
type CreateEndpointRequest struct {
54-
TenantName string // tenant name
55-
NetworkName string // network name
56-
ServiceName string // service name
57-
EndpointID string // Unique identifier for the endpoint
58-
ConfigEP intent.ConfigEP // Endpoint configuration
54+
TenantName string // tenant name
55+
NetworkName string // network name
56+
ServiceName string // service name
57+
EndpointID string // Unique identifier for the endpoint
58+
EPCommonName string // Common name for the endpoint
59+
ConfigEP intent.ConfigEP // Endpoint configuration
5960
}
6061

6162
// CreateEndpointResponse has the endpoint create response from netmaster
@@ -74,14 +75,14 @@ type DeleteEndpointRequest struct {
7475

7576
//UpdateEndpointRequest has the update endpoint request from netplugin
7677
type UpdateEndpointRequest struct {
77-
IPAddress string // provider IP
78-
ContainerID string // container id
79-
Labels map[string]string // lables
80-
Tenant string
81-
Network string
82-
Event string
83-
EndpointID string
84-
ContainerName string
78+
IPAddress string // provider IP
79+
ContainerID string // container id
80+
Labels map[string]string // lables
81+
Tenant string
82+
Network string
83+
Event string
84+
EndpointID string
85+
EPCommonName string // Common name for the endpoint
8586
}
8687

8788
//UpdateEndpointResponse is service provider update request from netplugin
@@ -268,7 +269,7 @@ func CreateEndpointHandler(w http.ResponseWriter, r *http.Request, vars map[stri
268269
}
269270

270271
// Create the endpoint
271-
epCfg, err := CreateEndpoint(stateDriver, nwCfg, &epReq.ConfigEP)
272+
epCfg, err := CreateEndpoint(stateDriver, nwCfg, &epReq)
272273
if err != nil {
273274
log.Errorf("CreateEndpoint failure for ep: %v. Err: %v", epReq.ConfigEP, err)
274275
return nil, err
@@ -401,7 +402,7 @@ func UpdateEndpointHandler(w http.ResponseWriter, r *http.Request, vars map[stri
401402
provider.EpIDKey = epCfg.ID
402403
//maintain the containerId in endpointstat for recovery
403404
epCfg.ContainerID = epUpdReq.ContainerID
404-
epCfg.ContainerName = epUpdReq.ContainerName
405+
epCfg.EPCommonName = epUpdReq.EPCommonName
405406

406407
err = epCfg.Write()
407408
if err != nil {

netmaster/master/endpoint.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,9 @@ func freeAddrOnErr(nwCfg *mastercfg.CfgNetworkState, ipAddress string, pErr *err
9898

9999
// CreateEndpoint creates an endpoint
100100
func CreateEndpoint(stateDriver core.StateDriver, nwCfg *mastercfg.CfgNetworkState,
101-
ep *intent.ConfigEP) (*mastercfg.CfgEndpointState, error) {
101+
epReq *CreateEndpointRequest) (*mastercfg.CfgEndpointState, error) {
102102

103+
ep := &epReq.ConfigEP
103104
epCfg := &mastercfg.CfgEndpointState{}
104105
epCfg.StateDriver = stateDriver
105106
epCfg.ID = getEpName(nwCfg.ID, ep)
@@ -113,6 +114,7 @@ func CreateEndpoint(stateDriver core.StateDriver, nwCfg *mastercfg.CfgNetworkSta
113114
epCfg.EndpointID = ep.Container
114115
epCfg.HomingHost = ep.Host
115116
epCfg.ServiceName = ep.ServiceName
117+
epCfg.EPCommonName = epReq.EPCommonName
116118

117119
// Allocate addresses
118120
err = allocSetEpAddress(ep, epCfg, nwCfg)
@@ -187,7 +189,9 @@ func CreateEndpoints(stateDriver core.StateDriver, tenant *intent.ConfigTenant)
187189
}
188190

189191
for _, ep := range network.Endpoints {
190-
_, err = CreateEndpoint(stateDriver, nwCfg, &ep)
192+
epReq := CreateEndpointRequest{}
193+
epReq.ConfigEP = ep
194+
_, err = CreateEndpoint(stateDriver, nwCfg, &epReq)
191195
if err != nil {
192196
log.Errorf("Error creating endpoint %+v. Err: %v", ep, err)
193197
return err

netmaster/mastercfg/endpointstate.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ type CfgEndpointState struct {
3939
VtepIP string `json:"vtepIP"`
4040
Labels map[string]string `json:"labels"`
4141
ContainerID string `json:"containerId"`
42-
ContainerName string `json:"containerName"`
42+
EPCommonName string `json:"epCommonName"`
4343
}
4444

4545
// Write the state.

netmaster/objApi/apiController.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ func (ac *APIController) EndpointGetOper(endpoint *contivModel.EndpointInspect)
414414
ep := epCfg.(*mastercfg.CfgEndpointState)
415415
if strings.Contains(ep.EndpointID, endpoint.Oper.Key) ||
416416
strings.Contains(ep.ContainerID, endpoint.Oper.Key) ||
417-
strings.Contains(ep.ContainerName, endpoint.Oper.Key) {
417+
strings.Contains(ep.EPCommonName, endpoint.Oper.Key) {
418418

419419
endpoint.Oper.Network = ep.NetID
420420
endpoint.Oper.EndpointID = ep.EndpointID
@@ -428,7 +428,7 @@ func (ac *APIController) EndpointGetOper(endpoint *contivModel.EndpointInspect)
428428
endpoint.Oper.VtepIP = ep.VtepIP
429429
endpoint.Oper.Labels = fmt.Sprintf("%s", ep.Labels)
430430
endpoint.Oper.ContainerID = ep.ContainerID
431-
endpoint.Oper.ContainerName = ep.ContainerName
431+
endpoint.Oper.ContainerName = ep.EPCommonName
432432

433433
return nil
434434
}
@@ -852,7 +852,7 @@ func (ac *APIController) EndpointGroupGetOper(endpointGroup *contivModel.Endpoin
852852
epOper.VtepIP = ep.VtepIP
853853
epOper.Labels = fmt.Sprintf("%s", ep.Labels)
854854
epOper.ContainerID = ep.ContainerID
855-
epOper.ContainerName = ep.ContainerName
855+
epOper.ContainerName = ep.EPCommonName
856856
endpointGroup.Oper.Endpoints = append(endpointGroup.Oper.Endpoints, epOper)
857857
}
858858
}
@@ -1021,7 +1021,7 @@ func (ac *APIController) NetworkGetOper(network *contivModel.NetworkInspect) err
10211021
epOper.VtepIP = ep.VtepIP
10221022
epOper.Labels = fmt.Sprintf("%s", ep.Labels)
10231023
epOper.ContainerID = ep.ContainerID
1024-
epOper.ContainerName = ep.ContainerName
1024+
epOper.ContainerName = ep.EPCommonName
10251025
network.Oper.Endpoints = append(network.Oper.Endpoints, epOper)
10261026
}
10271027
}
@@ -1254,7 +1254,7 @@ func (ac *APIController) PolicyGetOper(policy *contivModel.PolicyInspect) error
12541254
epOper.VtepIP = ep.VtepIP
12551255
epOper.Labels = fmt.Sprintf("%s", ep.Labels)
12561256
epOper.ContainerID = ep.ContainerID
1257-
epOper.ContainerName = ep.ContainerName
1257+
epOper.ContainerName = ep.EPCommonName
12581258
policy.Oper.Endpoints = append(policy.Oper.Endpoints, epOper)
12591259
}
12601260
}
@@ -1597,7 +1597,7 @@ func getTenantNetworks(tenant *contivModel.TenantInspect) error {
15971597
epOper.VtepIP = ep.VtepIP
15981598
epOper.Labels = fmt.Sprintf("%s", ep.Labels)
15991599
epOper.ContainerID = ep.ContainerID
1600-
epOper.ContainerName = ep.ContainerName
1600+
epOper.ContainerName = ep.EPCommonName
16011601
netOper.Endpoints = append(netOper.Endpoints, epOper)
16021602
}
16031603
}
@@ -1660,7 +1660,7 @@ func getTenantEPGs(tenant *contivModel.TenantInspect) error {
16601660
epOper.VtepIP = ep.VtepIP
16611661
epOper.Labels = fmt.Sprintf("%s", ep.Labels)
16621662
epOper.ContainerID = ep.ContainerID
1663-
epOper.ContainerName = ep.ContainerName
1663+
epOper.ContainerName = ep.EPCommonName
16641664
epgOper.Endpoints = append(epgOper.Endpoints, epOper)
16651665
}
16661666
}
@@ -2081,7 +2081,7 @@ func (ac *APIController) ServiceLBGetOper(serviceLB *contivModel.ServiceLBInspec
20812081
epOper.VtepIP = epCfg.VtepIP
20822082
epOper.Labels = fmt.Sprintf("%s", epCfg.Labels)
20832083
epOper.ContainerID = epCfg.ContainerID
2084-
epOper.ContainerName = epCfg.ContainerName
2084+
epOper.ContainerName = epCfg.EPCommonName
20852085
serviceLB.Oper.Providers = append(serviceLB.Oper.Providers, epOper)
20862086
count++
20872087
epCfg = nil

netmaster/objApi/objapi_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1963,7 +1963,7 @@ func triggerProviderUpdate(t *testing.T, providerIP, network, containerID, endpo
19631963
endpointUpdReq.Event = event
19641964
endpointUpdReq.Labels = make(map[string]string)
19651965
endpointUpdReq.EndpointID = endpointID
1966-
endpointUpdReq.ContainerName = containerName
1966+
endpointUpdReq.EPCommonName = containerName
19671967

19681968
for _, v := range labels {
19691969
key := strings.Split(v, "=")[0]

netplugin/agent/docker_event.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func handleDockerEvents(event *dockerclient.Event, ec chan error, args ...interf
6666
endpointUpdReq.Network = networkName
6767
endpointUpdReq.Event = "start"
6868
endpointUpdReq.EndpointID = endpoint
69-
endpointUpdReq.ContainerName = containerInfo.Name
69+
endpointUpdReq.EPCommonName = containerInfo.Name
7070
endpointUpdReq.Labels = make(map[string]string)
7171

7272
for k, v := range labelMap {

0 commit comments

Comments
 (0)