forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
etcd.go
38 lines (31 loc) · 1.2 KB
/
etcd.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package etcd
import (
"k8s.io/kubernetes/pkg/registry/generic/registry"
"k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/storage"
"github.com/openshift/origin/pkg/build/api"
"github.com/openshift/origin/pkg/build/registry/buildconfig"
"github.com/openshift/origin/pkg/util/restoptions"
)
type REST struct {
*registry.Store
}
// NewREST returns a RESTStorage object that will work against BuildConfig.
func NewREST(optsGetter restoptions.Getter) (*REST, error) {
store := ®istry.Store{
NewFunc: func() runtime.Object { return &api.BuildConfig{} },
NewListFunc: func() runtime.Object { return &api.BuildConfigList{} },
QualifiedResource: api.Resource("buildconfigs"),
PredicateFunc: buildconfig.Matcher,
CreateStrategy: buildconfig.Strategy,
UpdateStrategy: buildconfig.Strategy,
DeleteStrategy: buildconfig.Strategy,
}
// TODO this will be uncommented after 1.6 rebase:
// options := &generic.StoreOptions{RESTOptions: optsGetter, AttrFunc: buildconfig.GetAttrs}
// if err := store.CompleteWithOptions(options); err != nil {
if err := restoptions.ApplyOptions(optsGetter, store, storage.NoTriggerPublisher); err != nil {
return nil, err
}
return &REST{store}, nil
}