Documentation ¶
Overview ¶
Package replicaset provides Registry interface and it's RESTStorage implementation for storing ReplicaSet api objects.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var StatusStrategy = rsStatusStrategy{Strategy}
var Strategy = rsStrategy{api.Scheme, names.SimpleNameGenerator}
Strategy is the default logic that applies when creating and updating ReplicaSet objects.
Functions ¶
func GetAttrs ¶ added in v1.6.0
GetAttrs returns labels and fields of a given object for filtering purposes.
func MatchReplicaSet ¶
func MatchReplicaSet(label labels.Selector, field fields.Selector) apistorage.SelectionPredicate
MatchReplicaSet is the filter used by the generic etcd backend to route watch events from etcd to clients of the apiserver only interested in specific labels/fields.
func ReplicaSetToSelectableFields ¶
func ReplicaSetToSelectableFields(rs *extensions.ReplicaSet) fields.Set
ReplicaSetToSelectableFields returns a field set that represents the object.
Types ¶
type Registry ¶
type Registry interface { ListReplicaSets(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (*extensions.ReplicaSetList, error) WatchReplicaSets(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (watch.Interface, error) GetReplicaSet(ctx genericapirequest.Context, replicaSetID string, options *metav1.GetOptions) (*extensions.ReplicaSet, error) CreateReplicaSet(ctx genericapirequest.Context, replicaSet *extensions.ReplicaSet) (*extensions.ReplicaSet, error) UpdateReplicaSet(ctx genericapirequest.Context, replicaSet *extensions.ReplicaSet) (*extensions.ReplicaSet, error) DeleteReplicaSet(ctx genericapirequest.Context, replicaSetID string) error }
Registry is an interface for things that know how to store ReplicaSets.
func NewRegistry ¶
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.