Skip to content

Commit 767e939

Browse files
committed
handling restore
1 parent d56170b commit 767e939

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

netmaster/master/api.go

+2
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,8 @@ func ServiceProviderUpdateHandler(w http.ResponseWriter, r *http.Request, vars m
363363
provider.Labels[k] = v
364364
epCfg.Labels[k] = v
365365
}
366+
//maintain the containerId in endpointstat for recovery
367+
epCfg.ContainerID = svcProvUpdReq.ContainerID
366368

367369
err = epCfg.Write()
368370
if err != nil {

netmaster/master/servicelb.go

+25
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import (
2222
"github.com/contiv/netplugin/netmaster/mastercfg"
2323
"github.com/contiv/netplugin/utils"
2424
"reflect"
25+
"strings"
2526
)
2627

2728
//CreateServiceLB adds to the etcd state
@@ -225,4 +226,28 @@ func RestoreServiceProviderLBDb() {
225226
}
226227
}
227228
}
229+
//Recover from endpoint state as well .
230+
epCfgState := mastercfg.CfgEndpointState{}
231+
epCfgState.StateDriver = stateDriver
232+
epCfgs, err := epCfgState.ReadAll()
233+
if err == nil {
234+
for _, epCfg := range epCfgs {
235+
ep := epCfg.(*mastercfg.CfgEndpointState)
236+
if ep.Labels != nil {
237+
//Create provider info and store it in provider db
238+
providerInfo := &mastercfg.Provider{}
239+
providerInfo.ContainerID = ep.ContainerID
240+
providerInfo.Network = strings.Split(ep.NetID, ".")[0]
241+
providerInfo.Tenant = strings.Split(ep.NetID, ".")[1]
242+
providerInfo.Labels = make(map[string]string)
243+
244+
for k, v := range ep.Labels {
245+
providerInfo.Labels[k] = v
246+
}
247+
providerDBId := providerInfo.ContainerID
248+
mastercfg.ProviderDb[providerDBId] = providerInfo
249+
250+
}
251+
}
252+
}
228253
}

netmaster/mastercfg/endpointstate.go

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ type CfgEndpointState struct {
3737
IntfName string `json:"intfName"`
3838
VtepIP string `json:"vtepIP"`
3939
Labels map[string]string `json:"labels"`
40+
ContainerID string `json:"containerId"`
4041
}
4142

4243
// Write the state.

0 commit comments

Comments
 (0)