Documentation
¶
Overview ¶
Package deployconfig provides Registry interface and its RESTStorage implementation for storing DeploymentConfig api objects.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var StatusStrategy = statusStrategy{Strategy}
View Source
var Strategy = strategy{kapi.Scheme, names.SimpleNameGenerator}
Strategy is the default logic that applies when creating and updating DeploymentConfig objects.
Functions ¶
func GetAttrs ¶
GetAttrs returns labels and fields of a given object for filtering purposes
Types ¶
type Registry ¶
type Registry interface {
ListDeploymentConfigs(ctx apirequest.Context, options *metainternal.ListOptions) (*deployapi.DeploymentConfigList, error)
WatchDeploymentConfigs(ctx apirequest.Context, options *metainternal.ListOptions) (watch.Interface, error)
GetDeploymentConfig(ctx apirequest.Context, name string, options *metav1.GetOptions) (*deployapi.DeploymentConfig, error)
CreateDeploymentConfig(ctx apirequest.Context, deploymentConfig *deployapi.DeploymentConfig) error
UpdateDeploymentConfig(ctx apirequest.Context, deploymentConfig *deployapi.DeploymentConfig) error
DeleteDeploymentConfig(ctx apirequest.Context, name string) error
}
Registry is an interface for things that know how to store DeploymentConfigs.
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
Click to show internal directories.
Click to hide internal directories.