package certificates
import "k8s.io/kubernetes/pkg/registry/certificates/certificates"
Package certificates provides Registry interface and its RESTStorage implementation for storing CertificateSigningRequest objects.
Index ¶
- Variables
- func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error)
- func Matcher(label labels.Selector, field fields.Selector) apistorage.SelectionPredicate
- func SelectableFields(obj *certificates.CertificateSigningRequest) fields.Set
- type Registry
Variables ¶
var ApprovalStrategy = csrApprovalStrategy{Strategy}
var StatusStrategy = csrStatusStrategy{Strategy}
var Strategy = csrStrategy{api.Scheme, names.SimpleNameGenerator}
csrStrategy is the default logic that applies when creating and updating CSR objects.
Functions ¶
func GetAttrs ¶
GetAttrs returns labels and fields of a given object for filtering purposes.
func Matcher ¶
func Matcher(label labels.Selector, field fields.Selector) apistorage.SelectionPredicate
Matcher returns a generic matcher for a given label and field selector.
func SelectableFields ¶
func SelectableFields(obj *certificates.CertificateSigningRequest) fields.Set
SelectableFields returns a field set that can be used for filter selection
Types ¶
type Registry ¶
type Registry interface { ListCSRs(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (*certificates.CertificateSigningRequestList, error) CreateCSR(ctx genericapirequest.Context, csr *certificates.CertificateSigningRequest) error UpdateCSR(ctx genericapirequest.Context, csr *certificates.CertificateSigningRequest) error GetCSR(ctx genericapirequest.Context, csrID string, options *metav1.GetOptions) (*certificates.CertificateSigningRequest, error) DeleteCSR(ctx genericapirequest.Context, csrID string) error WatchCSRs(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (watch.Interface, error) }
Registry is an interface for things that know how to store CSRs.
func NewRegistry ¶
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
Source Files ¶
doc.go registry.go strategy.go
Directories ¶
Path | Synopsis |
---|---|
pkg/registry/certificates/certificates/storage |
- Version
- v1.6.6
- Published
- Jun 16, 2017
- Platform
- js/wasm
- Imports
- 16 packages
- Last checked
- 11 minutes ago –
Tools for package owners.