service

package
v0.0.0-...-d1fd2e1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 19, 2016 License: Apache-2.0 Imports: 1 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FakeGetter

type FakeGetter struct {
	Svc *api.Service
	Err error
}

FakeGetter is a ServiceGetter implementation to be used in unit tests

func (FakeGetter) Get

func (f FakeGetter) Get(name string) (*api.Service, error)

Get is the Getter interface implementation. It just returns f.Svc, f.Err

type FakeLister

type FakeLister struct {
	SvcList *api.ServiceList
	Err     error
}

FakeLister is a ServiceLister implementation to be used in unit tests

func (FakeLister) List

func (f FakeLister) List(opts api.ListOptions) (*api.ServiceList, error)

List is the Lister interface implementation. It just returns f.SvcList, f.Err

type Getter

type Getter interface {
	Get(name string) (*api.Service, error)
}

Getter is a (k8s.io/kubernetes/pkg/client/unversioned).ServiceInterface compatible interface designed only for getting a service. It should be used as a parameter to functions so that they can be more easily unit tested

type Lister

type Lister interface {
	List(opts api.ListOptions) (*api.ServiceList, error)
}

Lister is a (k8s.io/kubernetes/pkg/client/unversioned).ServiceInterface compatible interface designed only for listing services. It should be used as a parameter to functions so that they can be more easily unit tested

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL