kubernetesk8s.io/kubernetes/pkg/registry/scheduling/priorityclass Index | Files | Directories

package priorityclass

import "k8s.io/kubernetes/pkg/registry/scheduling/priorityclass"

Index

Variables

var Strategy = priorityClassStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}

Strategy is the default logic that applies when creating and updating PriorityClass objects.

Types

type Registry

type Registry interface {
	ListPriorityClasses(ctx context.Context, options *metainternalversion.ListOptions) (*scheduling.PriorityClassList, error)
	CreatePriorityClass(ctx context.Context, pc *scheduling.PriorityClass, createValidation rest.ValidateObjectFunc) error
	UpdatePriorityClass(ctx context.Context, pc *scheduling.PriorityClass, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc) error
	GetPriorityClass(ctx context.Context, name string, options *metav1.GetOptions) (*scheduling.PriorityClass, error)
	DeletePriorityClass(ctx context.Context, name string) error
	WatchPriorityClasses(ctx context.Context, options *metainternalversion.ListOptions) (watch.Interface, error)
}

Registry is an interface for things that know how to store PriorityClass.

func NewRegistry

func NewRegistry(s rest.StandardStorage) Registry

NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.

Source Files

doc.go registry.go strategy.go

Directories

PathSynopsis
pkg/registry/scheduling/priorityclass/storage
Version
v1.11.3-beta.0
Published
Aug 7, 2018
Platform
js/wasm
Imports
11 packages
Last checked
1 minute ago

Tools for package owners.