Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Strategy = strategy{kapi.Scheme, kapi.SimpleNameGenerator}
Strategy is the default logic that applies when creating and updating BuildConfig objects.
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
Types ¶
type Registry ¶
type Registry interface { // ListBuildConfigs obtains list of buildConfigs that match a selector. ListBuildConfigs(ctx kapi.Context, options *kapi.ListOptions) (*api.BuildConfigList, error) // GetBuildConfig retrieves a specific buildConfig. GetBuildConfig(ctx kapi.Context, id string) (*api.BuildConfig, error) // CreateBuildConfig creates a new buildConfig. CreateBuildConfig(ctx kapi.Context, buildConfig *api.BuildConfig) error // UpdateBuildConfig updates a buildConfig. UpdateBuildConfig(ctx kapi.Context, buildConfig *api.BuildConfig) error // DeleteBuildConfig deletes a buildConfig. DeleteBuildConfig(ctx kapi.Context, id string) error // WatchBuildConfigs watches buildConfigs. WatchBuildConfigs(ctx kapi.Context, options *kapi.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.