Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // GroupStrategy is the logic that applies when creating and updating BuildConfig objects // in the Group api. // This differs from the LegacyStrategy in that on create it will set a default build // pruning limit value for both successful and failed builds. This is new behavior that // can only be introduced to users consuming the new group based api. GroupStrategy = groupStrategy{strategy{kapi.Scheme, names.SimpleNameGenerator}} // LegacyStrategy is the default logic that applies when creating BuildConfig objects. // Specifically it will not set the default build pruning limit values because that was not // part of the legacy api. LegacyStrategy = legacyStrategy{strategy{kapi.Scheme, names.SimpleNameGenerator}} )
Functions ¶
func GetAttrs ¶
GetAttrs returns labels and fields of a given object for filtering purposes
func Matcher ¶
Matcher returns a generic matcher for a given label and field selector.
Types ¶
type Registry ¶
type Registry interface {
// ListBuildConfigs obtains list of buildConfigs that match a selector.
ListBuildConfigs(ctx apirequest.Context, options *metainternal.ListOptions) (*buildapi.BuildConfigList, error)
// GetBuildConfig retrieves a specific buildConfig.
GetBuildConfig(ctx apirequest.Context, id string, options *metav1.GetOptions) (*buildapi.BuildConfig, error)
// CreateBuildConfig creates a new buildConfig.
CreateBuildConfig(ctx apirequest.Context, buildConfig *buildapi.BuildConfig) error
// UpdateBuildConfig updates a buildConfig.
UpdateBuildConfig(ctx apirequest.Context, buildConfig *buildapi.BuildConfig) error
// DeleteBuildConfig deletes a buildConfig.
DeleteBuildConfig(ctx apirequest.Context, id string) error
// WatchBuildConfigs watches buildConfigs.
WatchBuildConfigs(ctx apirequest.Context, options *metainternal.ListOptions) (watch.Interface, error)
}
Registry is an interface for things that know how to store BuildConfigs.
func NewRegistry ¶
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
type WebHook ¶ added in v1.3.0
type WebHook struct {
// contains filtered or unexported fields
}
func (*WebHook) ServeHTTP ¶ added in v1.3.0
func (w *WebHook) ServeHTTP(writer http.ResponseWriter, req *http.Request, ctx apirequest.Context, name, subpath string) error
ServeHTTP implements rest.HookHandler
Source Files
¶
- registry.go
- strategy.go
- webhook.go
Click to show internal directories.
Click to hide internal directories.