Documentation ¶
Index ¶
- Variables
- func WithNotification(d deploy.Deployer) deploy.Deployer
- func WithTimings(b build.Builder, t test.Tester, d deploy.Deployer, cacheArtifacts bool) (build.Builder, test.Tester, deploy.Deployer)
- type SkaffoldRunner
- func (r *SkaffoldRunner) BuildAndTest(ctx context.Context, out io.Writer, artifacts []*latest.Artifact) ([]build.Artifact, error)
- func (r *SkaffoldRunner) Deploy(ctx context.Context, out io.Writer, artifacts []build.Artifact) error
- func (r *SkaffoldRunner) Dev(ctx context.Context, output *config.Output, artifacts []*latest.Artifact) error
- func (r *SkaffoldRunner) DiagnoseArtifacts(out io.Writer) error
- func (r *SkaffoldRunner) HasBuilt() bool
- func (r *SkaffoldRunner) HasDeployed() bool
- func (r *SkaffoldRunner) IsTargetImage(artifact *latest.Artifact) bool
- func (r *SkaffoldRunner) Run(ctx context.Context, out io.Writer, artifacts []*latest.Artifact) error
- func (r *SkaffoldRunner) TailLogs(ctx context.Context, out io.Writer, artifacts []*latest.Artifact, ...) error
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrorConfigurationChanged = errors.New("configuration changed")
ErrorConfigurationChanged is a special error that's returned when the skaffold configuration was changed.
Functions ¶
func WithNotification ¶ added in v0.6.1
WithNotification creates a deployer that bips each time a deploy is done.
Types ¶
type SkaffoldRunner ¶
type SkaffoldRunner struct { build.Builder deploy.Deployer test.Tester tag.Tagger sync.Syncer watch.Watcher RPCServerShutdown func() error // contains filtered or unexported fields }
SkaffoldRunner is responsible for running the skaffold build and deploy config.
func NewForConfig ¶
func NewForConfig(opts *config.SkaffoldOptions, cfg *latest.SkaffoldConfig) (*SkaffoldRunner, error)
NewForConfig returns a new SkaffoldRunner for a SkaffoldConfig
func (*SkaffoldRunner) BuildAndTest ¶ added in v0.19.0
func (r *SkaffoldRunner) BuildAndTest(ctx context.Context, out io.Writer, artifacts []*latest.Artifact) ([]build.Artifact, error)
BuildAndTest builds artifacts and runs tests on built artifacts
func (*SkaffoldRunner) Deploy ¶ added in v0.20.0
func (r *SkaffoldRunner) Deploy(ctx context.Context, out io.Writer, artifacts []build.Artifact) error
Deploy deploys the given artifacts
func (*SkaffoldRunner) Dev ¶ added in v0.6.0
func (r *SkaffoldRunner) Dev(ctx context.Context, output *config.Output, artifacts []*latest.Artifact) error
Dev watches for changes and runs the skaffold build and deploy config until interrupted by the user.
func (*SkaffoldRunner) DiagnoseArtifacts ¶ added in v0.27.0
func (r *SkaffoldRunner) DiagnoseArtifacts(out io.Writer) error
func (*SkaffoldRunner) HasBuilt ¶ added in v0.27.0
func (r *SkaffoldRunner) HasBuilt() bool
HasBuilt returns true if this runner has built something.
func (*SkaffoldRunner) HasDeployed ¶ added in v0.20.0
func (r *SkaffoldRunner) HasDeployed() bool
HasDeployed returns true if this runner has deployed something.
func (*SkaffoldRunner) IsTargetImage ¶ added in v0.23.0
func (r *SkaffoldRunner) IsTargetImage(artifact *latest.Artifact) bool
Source Files ¶
Click to show internal directories.
Click to hide internal directories.