MCPcopy Index your code
hub / github.com/OpenFunction/OpenFunction / BuilderRun

Interface BuilderRun

pkg/core/interface.go:28–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26)
27
28type BuilderRun interface {
29
30 // Start to build image.
31 Start(builder *openfunction.Builder) error
32 // Result get the build result.
33 // "" means build has not been completed.
34 // `Succeeded` means build completed.
35 // Other means build failed.
36 Result(builder *openfunction.Builder) (string, string, string, error)
37 // Clean all resources which created by builder.
38 Clean(builder *openfunction.Builder) error
39 // Cancel the builder.
40 Cancel(builder *openfunction.Builder) error
41}
42
43type ServingRun interface {
44 Run(s *openfunction.Serving, cm map[string]string) error

Callers 10

mainFunction · 0.65
suite_test.goFile · 0.65
ReconcileMethod · 0.65
suite_test.goFile · 0.65
suite_test.goFile · 0.65
getServingResultMethod · 0.65
getBuilderResultMethod · 0.65
ReconcileMethod · 0.65
ReconcileMethod · 0.65

Implementers 1

builderRunpkg/core/builder/shipwright/builderrun

Calls

no outgoing calls

Tested by

no test coverage detected