Documentation ¶
Overview ¶
Package apply provides the apply command, which upserts resources from a file to the store.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Applier ¶
type Applier interface { // ApplyResourcesFromFiles applies all resources from a list of files. ApplyResourcesFromFiles(ctx context.Context, filenames []string) ([]*model.AnyResourceStatus, error) // ApplyResourcesFromReader applies all resources from a reader. ApplyResourcesFromReader(ctx context.Context, reader io.Reader) ([]*model.AnyResourceStatus, error) }
Applier is an interface for applying resources.
func NewApplier ¶
NewApplier returns a new Applier.
Click to show internal directories.
Click to hide internal directories.