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 Matcher ¶ added in v0.5.2
Matcher returns a generic matcher for a given label and field selector.
func NewWebHookREST ¶ added in v0.5.1
func NewWebHookREST(registry Registry, instantiator client.BuildConfigInstantiator, groupVersion schema.GroupVersion, plugins map[string]webhook.Plugin) *rest.WebHook
NewWebHookREST returns the webhook handler wrapped in a rest.WebHook object.
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 ¶ added in v0.5.2
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
Click to show internal directories.
Click to hide internal directories.