Plugin/Kubernetes: Service and Endpoint Indexing (#1149)
* indexing * corrections
This commit is contained in:
parent
0c63248a0e
commit
b6b05eae8f
10 changed files with 501 additions and 26 deletions
|
@ -14,9 +14,13 @@ import (
|
|||
|
||||
type APIConnReverseTest struct{}
|
||||
|
||||
func (APIConnReverseTest) Run() { return }
|
||||
func (APIConnReverseTest) Stop() error { return nil }
|
||||
func (APIConnReverseTest) PodIndex(string) []*api.Pod { return nil }
|
||||
func (APIConnReverseTest) Run() { return }
|
||||
func (APIConnReverseTest) Stop() error { return nil }
|
||||
func (APIConnReverseTest) PodIndex(string) []*api.Pod { return nil }
|
||||
func (APIConnReverseTest) SvcIndex(string) []*api.Service { return nil }
|
||||
func (APIConnReverseTest) SvcIndexReverse(string) []*api.Service { return nil }
|
||||
func (APIConnReverseTest) EpIndex(string) []*api.Endpoints { return nil }
|
||||
func (APIConnReverseTest) EndpointsList() []*api.Endpoints { return nil }
|
||||
|
||||
func (APIConnReverseTest) ServiceList() []*api.Service {
|
||||
svcs := []*api.Service{
|
||||
|
@ -38,7 +42,7 @@ func (APIConnReverseTest) ServiceList() []*api.Service {
|
|||
return svcs
|
||||
}
|
||||
|
||||
func (APIConnReverseTest) EndpointsList() []*api.Endpoints {
|
||||
func (APIConnReverseTest) EpIndexReverse(string) []*api.Endpoints {
|
||||
eps := []*api.Endpoints{
|
||||
{
|
||||
Subsets: []api.EndpointSubset{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue