summaryrefslogtreecommitdiffstats
path: root/extras/vpp_config
AgeCommit message (Expand)AuthorFilesLines
2020-08-31vpp_config: update node variants to skx and iclRay Kinsella1-2/+2
2020-06-21vpp_config: Updates for 20.05John DeNisco7-97/+141
2020-05-12misc: remove useless assignmentDave Barach1-1/+0
2020-04-28vlib: startup multi-arch variant configurationRay Kinsella1-0/+10
2020-04-06misc: fix python sonarcloud BLOCKER level issuesPaul Vinciguerra2-58/+58
2019-11-05misc: Fix python scripts shebang lineRenato Botelho do Couto2-2/+2
2019-10-30vpp_config: fix typos in templatesPaul Vinciguerra2-3/+3
2019-05-02Add the packages for 19.04jdenisco2-6/+6
2019-05-01vpp_config: Update deprecated platform.linux_distribution()Paul Vinciguerra2-8/+9
2019-05-01vpp_config: correct usage of 'is' for equality tests.Paul Vinciguerra2-16/+16
2019-04-09Fix some python3, cleanup cpu allocationjdenisco3-19/+34
2019-02-27Fix centos build and build documentationjdenisco1-2/+2
2019-02-23Add support for 19.01jdenisco2-121/+59
2019-02-19VPP-1504: Remove JVPPMichal Cmarada1-4/+0
2019-01-10vpp_config: Rework for Python2/3 compatibility.Paul Vinciguerra12-406/+554
2018-12-19Allow the user to select master or release during the installjdenisco3-51/+38
2018-11-20Fix inspection for 18.10, requirementsjdenisco5-42/+68
2018-11-13docs and Config utility, package cloud supportjdenisco1-53/+80
2018-11-07Update the vpp config utilityjdenisco3-15/+19
2018-09-12Always use 'lib' instead of 'lib64'Damjan Marion1-2/+2
2018-03-30Fix minor issues.John DeNisco4-8/+24
2018-03-01Change tcp config to reflect some recent changes.John DeNisco7-3/+3
2018-02-16Add iperf VM/vhost creationJohn DeNisco12-19/+452
2018-01-30VPP-899: Run VPP under SELinuxBilly McFall2-3/+3
2018-01-26Add support for 18.01.John DeNisco5-62/+89
2017-11-17Add a non interactive modeJohn DeNisco5-131/+221
2017-11-01A bit of cleanup, updated the README, started vhost test.John DeNisco7-42/+245
2017-10-17Initial commit for phase 2, Add some simple validation.John DeNisco4-8/+235
2017-10-11Redhat and small system supportJohn DeNisco23-0/+6148
>mr.mock, "Disconnect", reflect.TypeOf((*MockStatsAPI)(nil).Disconnect)) } // DumpStats mocks base method func (m *MockStatsAPI) DumpStats(arg0 ...string) ([]*adapter.StatEntry, error) { varargs := []interface{}{} for _, a := range arg0 { varargs = append(varargs, a) } ret := m.ctrl.Call(m, "DumpStats", varargs...) ret0, _ := ret[0].([]*adapter.StatEntry) ret1, _ := ret[1].(error) return ret0, ret1 } // DumpStats indicates an expected call of DumpStats func (mr *MockStatsAPIMockRecorder) DumpStats(arg0 ...interface{}) *gomock.Call { return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DumpStats", reflect.TypeOf((*MockStatsAPI)(nil).DumpStats), arg0...) } // ListStats mocks base method func (m *MockStatsAPI) ListStats(arg0 ...string) ([]string, error) { varargs := []interface{}{} for _, a := range arg0 { varargs = append(varargs, a) } ret := m.ctrl.Call(m, "ListStats", varargs...) ret0, _ := ret[0].([]string) ret1, _ := ret[1].(error) return ret0, ret1 } // ListStats indicates an expected call of ListStats func (mr *MockStatsAPIMockRecorder) ListStats(arg0 ...interface{}) *gomock.Call { return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListStats", reflect.TypeOf((*MockStatsAPI)(nil).ListStats), arg0...) }