Documentation ¶
Overview ¶
Package minion provides Registry interface and implementation for storing Minions.
Index ¶
- Variables
- type HealthyRegistry
- func (r *HealthyRegistry) CreateMinion(ctx api.Context, minion *api.Minion) error
- func (r *HealthyRegistry) DeleteMinion(ctx api.Context, minionID string) error
- func (r *HealthyRegistry) GetMinion(ctx api.Context, minionID string) (*api.Minion, error)
- func (r *HealthyRegistry) ListMinions(ctx api.Context) (currentMinions *api.MinionList, err error)
- func (r *HealthyRegistry) UpdateMinion(ctx api.Context, minion *api.Minion) error
- type REST
- func (rs *REST) Create(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error)
- func (rs *REST) Delete(ctx api.Context, id string) (<-chan apiserver.RESTResult, error)
- func (rs *REST) Get(ctx api.Context, id string) (runtime.Object, error)
- func (rs *REST) List(ctx api.Context, label, field labels.Selector) (runtime.Object, error)
- func (rs *REST) New() runtime.Object
- func (rs *REST) ResourceLocation(ctx api.Context, id string) (string, error)
- func (rs *REST) Update(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error)
- type Registry
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrDoesNotExist = errors.New("The requested resource does not exist.")
View Source
var ErrNotHealty = errors.New("The requested minion is not healthy.")
Functions ¶
This section is empty.
Types ¶
type HealthyRegistry ¶
type HealthyRegistry struct {
// contains filtered or unexported fields
}
func (*HealthyRegistry) CreateMinion ¶
func (*HealthyRegistry) DeleteMinion ¶
func (r *HealthyRegistry) DeleteMinion(ctx api.Context, minionID string) error
func (*HealthyRegistry) ListMinions ¶
func (r *HealthyRegistry) ListMinions(ctx api.Context) (currentMinions *api.MinionList, err error)
func (*HealthyRegistry) UpdateMinion ¶ added in v0.5.1
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
REST implements the RESTStorage interface, backed by a MinionRegistry.
func (*REST) ResourceLocation ¶ added in v0.5.1
ResourceLocation returns a URL to which one can send traffic for the specified minion.
type Registry ¶
type Registry interface { ListMinions(ctx api.Context) (*api.MinionList, error) CreateMinion(ctx api.Context, minion *api.Minion) error UpdateMinion(ctx api.Context, minion *api.Minion) error GetMinion(ctx api.Context, minionID string) (*api.Minion, error) DeleteMinion(ctx api.Context, minionID string) error }
MinionRegistry is an interface for things that know how to store minions.
func NewHealthyRegistry ¶
func NewHealthyRegistry(delegate Registry, client client.KubeletHealthChecker) Registry
Click to show internal directories.
Click to hide internal directories.