minion

package
v0.0.0-...-6cc5b7d Latest Latest
Warning

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

Go to latest
Published: Nov 3, 2014 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Overview

Package minion provides Registry interface and implementation for storing Minions.

Index

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 (r *HealthyRegistry) CreateMinion(ctx api.Context, minion *api.Minion) error

func (*HealthyRegistry) DeleteMinion

func (r *HealthyRegistry) DeleteMinion(ctx api.Context, minionID string) error

func (*HealthyRegistry) GetMinion

func (r *HealthyRegistry) GetMinion(ctx api.Context, minionID string) (*api.Minion, error)

func (*HealthyRegistry) ListMinions

func (r *HealthyRegistry) ListMinions(ctx api.Context) (currentMinions *api.MinionList, err error)

type REST

type REST struct {
	// contains filtered or unexported fields
}

REST implements the RESTStorage interface, backed by a MinionRegistry.

func NewREST

func NewREST(m Registry) *REST

NewREST returns a new REST.

func (*REST) Create

func (rs *REST) Create(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error)

func (*REST) Delete

func (rs *REST) Delete(ctx api.Context, id string) (<-chan apiserver.RESTResult, error)

func (*REST) Get

func (rs *REST) Get(ctx api.Context, id string) (runtime.Object, error)

func (*REST) List

func (rs *REST) List(ctx api.Context, label, field labels.Selector) (runtime.Object, error)

func (*REST) New

func (rs *REST) New() runtime.Object

func (*REST) ResourceLocation

func (rs *REST) ResourceLocation(ctx api.Context, id string) (string, error)

ResourceLocation returns a URL to which one can send traffic for the specified minion.

func (*REST) Update

func (rs *REST) Update(ctx api.Context, minion runtime.Object) (<-chan apiserver.RESTResult, error)

type Registry

type Registry interface {
	ListMinions(ctx api.Context) (*api.MinionList, error)
	CreateMinion(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

Jump to

Keyboard shortcuts

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