pacoxu / kubernetes

Production-Grade Container Scheduling and Management
https://kubernetes.io
Apache License 2.0
2 stars 4 forks source link

define table converter that exposes more than name/creation timestamp #1755

Open github-actions[bot] opened 3 years ago

github-actions[bot] commented 3 years ago

define table converter that exposes more than name/creation timestamp

https://github.com/pacoxu/kubernetes/blob/19f8624ecd4751bb1c5a01662c32364a0169337d/staging/src/k8s.io/sample-apiserver/pkg/registry/wardle/fischer/etcd.go#L42

Copyright 2017 The Kubernetes Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package fischer

import (
    "k8s.io/apimachinery/pkg/runtime"
    "k8s.io/apiserver/pkg/registry/generic"
    genericregistry "k8s.io/apiserver/pkg/registry/generic/registry"
    "k8s.io/apiserver/pkg/registry/rest"
    "k8s.io/sample-apiserver/pkg/apis/wardle"
    "k8s.io/sample-apiserver/pkg/registry"
)

// NewREST returns a RESTStorage object that will work against API services.
func NewREST(scheme *runtime.Scheme, optsGetter generic.RESTOptionsGetter) (*registry.REST, error) {
    strategy := NewStrategy(scheme)

    store := &genericregistry.Store{
        NewFunc:                  func() runtime.Object { return &wardle.Fischer{} },
        NewListFunc:              func() runtime.Object { return &wardle.FischerList{} },
        PredicateFunc:            MatchFischer,
        DefaultQualifiedResource: wardle.Resource("fischers"),

        CreateStrategy: strategy,
        UpdateStrategy: strategy,
        DeleteStrategy: strategy,

        // TODO: define table converter that exposes more than name/creation timestamp
        TableConvertor: rest.NewDefaultTableConvertor(wardle.Resource("fischers")),
    }
    options := &generic.StoreOptions{RESTOptions: optsGetter, AttrFunc: GetAttrs}
    if err := store.CompleteWithOptions(options); err != nil {
        return nil, err
    }
    return &registry.REST{store}, nil
}
ew file mode 100644
ndex 0000000000000..e87f72179a8a1
++ b/staging/src/k8s.io/sample-apiserver/pkg/registry/wardle/fischer/strategy.go

ebcba07b75143bd6ff8c51e1ea64e68e518012c1