Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Strategy = userStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
Strategy is the default logic that applies when creating and updating StorageClass objects via the REST API.
Functions ¶
func MatchUser ¶
func MatchUser(label labels.Selector, field fields.Selector) apistorage.SelectionPredicate
MatchUser returns a generic matcher for a given label and field selector.
Types ¶
type Registry ¶
type Registry interface { ListUsers(ctx context.Context, options *metainternalversion.ListOptions) (*api.UserList, error) WatchUsers(ctx context.Context, options *metainternalversion.ListOptions) (watch.Interface, error) GetUser(ctx context.Context, name string, options *metav1.GetOptions) (*api.User, error) CreateUser(ctx context.Context, user *api.User, createValidation rest.ValidateObjectFunc) error UpdateUser(ctx context.Context, svc *api.User, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc) error DeleteUser(ctx context.Context, name string) error }
Registry is an interface for things that know how to store node.
func NewRegistry ¶
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
Click to show internal directories.
Click to hide internal directories.