// NewStorage returns a RESTStorage object that will work against nodes. func NewStorage(s storage.Interface) *REST { store := &etcdgeneric.Etcd{ NewFunc: func() runtime.Object { return &authorizationapi.ClusterPolicy{} }, NewListFunc: func() runtime.Object { return &authorizationapi.ClusterPolicyList{} }, EndpointName: "clusterpolicy", KeyRootFunc: func(ctx kapi.Context) string { return ClusterPolicyPath }, KeyFunc: func(ctx kapi.Context, id string) (string, error) { return util.NoNamespaceKeyFunc(ctx, ClusterPolicyPath, id) }, ObjectNameFunc: func(obj runtime.Object) (string, error) { return obj.(*authorizationapi.ClusterPolicy).Name, nil }, PredicateFunc: func(label labels.Selector, field fields.Selector) generic.Matcher { return clusterpolicy.Matcher(label, field) }, CreateStrategy: clusterpolicy.Strategy, UpdateStrategy: clusterpolicy.Strategy, Storage: s, } return &REST{store} }
// NewStorage returns a RESTStorage object that will work against nodes. func NewStorage(optsGetter restoptions.Getter) (*REST, error) { store := ®istry.Store{ NewFunc: func() runtime.Object { return &authorizationapi.ClusterPolicy{} }, NewListFunc: func() runtime.Object { return &authorizationapi.ClusterPolicyList{} }, QualifiedResource: authorizationapi.Resource("clusterpolicies"), KeyRootFunc: func(ctx kapi.Context) string { return ClusterPolicyPath }, KeyFunc: func(ctx kapi.Context, id string) (string, error) { return util.NoNamespaceKeyFunc(ctx, ClusterPolicyPath, id) }, ObjectNameFunc: func(obj runtime.Object) (string, error) { return obj.(*authorizationapi.ClusterPolicy).Name, nil }, PredicateFunc: func(label labels.Selector, field fields.Selector) generic.Matcher { return clusterpolicy.Matcher(label, field) }, CreateStrategy: clusterpolicy.Strategy, UpdateStrategy: clusterpolicy.Strategy, } if err := restoptions.ApplyOptions(optsGetter, store, ClusterPolicyPath); err != nil { return nil, err } return &REST{store}, nil }
func (i *InformerToClusterPolicyLister) List(options kapi.ListOptions) (*authorizationapi.ClusterPolicyList, error) { clusterPolicyList := &authorizationapi.ClusterPolicyList{} returnedList := i.GetIndexer().List() matcher := clusterpolicyregistry.Matcher(oapi.ListOptionsToSelectors(&options)) for i := range returnedList { clusterPolicy := returnedList[i].(*authorizationapi.ClusterPolicy) if matches, err := matcher.Matches(clusterPolicy); err == nil && matches { clusterPolicyList.Items = append(clusterPolicyList.Items, *clusterPolicy) } } return clusterPolicyList, nil }
func (c *readOnlyClusterPolicyCache) List(options *kapi.ListOptions) (*authorizationapi.ClusterPolicyList, error) { clusterPolicyList := &authorizationapi.ClusterPolicyList{} returnedList := c.indexer.List() matcher := clusterpolicyregistry.Matcher(api.ListOptionsToSelectors(options)) for i := range returnedList { clusterPolicy, castOK := returnedList[i].(*authorizationapi.ClusterPolicy) if !castOK { return clusterPolicyList, errors.NewInvalid(authorizationapi.Kind("ClusterPolicy"), "clusterPolicy", kfield.ErrorList{}) } if matches, err := matcher.Matches(clusterPolicy); err == nil && matches { clusterPolicyList.Items = append(clusterPolicyList.Items, *clusterPolicy) } } return clusterPolicyList, nil }
// NewStorage returns a RESTStorage object that will work against ClusterPolicy. func NewStorage(optsGetter restoptions.Getter) (*REST, error) { store := ®istry.Store{ NewFunc: func() runtime.Object { return &authorizationapi.ClusterPolicy{} }, NewListFunc: func() runtime.Object { return &authorizationapi.ClusterPolicyList{} }, QualifiedResource: authorizationapi.Resource("clusterpolicies"), ObjectNameFunc: func(obj runtime.Object) (string, error) { return obj.(*authorizationapi.ClusterPolicy).Name, nil }, PredicateFunc: func(label labels.Selector, field fields.Selector) storage.SelectionPredicate { return clusterpolicy.Matcher(label, field) }, CreateStrategy: clusterpolicy.Strategy, UpdateStrategy: clusterpolicy.Strategy, } if err := restoptions.ApplyOptions(optsGetter, store, false, storage.NoTriggerPublisher); err != nil { return nil, err } return &REST{store}, nil }