Documentation ¶
Index ¶
- Constants
- Variables
- func DefaultRetriable(info *resource.Info, err error) error
- func NewCommandMigrate(name, fullName string, f *clientcmd.Factory, out, errOut io.Writer, ...) *cobra.Command
- type ErrNotRetriable
- type ErrRetriable
- type MigrateActionFunc
- type MigrateFilterFunc
- type MigrateVisitFunc
- type Reporter
- type ResourceOptions
- type ResourceVisitor
Constants ¶
const MigrateRecommendedName = "migrate"
Variables ¶
var ErrRecalculate = fmt.Errorf("recalculate migration")
ErrRecalculate may be returned by MigrateActionFunc to indicate that the object has changed and needs to have its information recalculated prior to being saved. Use when a resource requries multiple API operations to persist (for instance, both status and spec must be changed).
var ErrUnchanged = fmt.Errorf("migration was not necessary")
ErrUnchanged may be returned by MigrateActionFunc to indicate that the object did not need migration (but that could only be determined when the action was taken).
Functions ¶
func DefaultRetriable ¶
DefaultRetriable adds retry information to the provided error, and will refresh the info if the client info is stale. If the refresh fails the error is made fatal. All other errors are left in their natural state - they will not be retried unless they define a Temporary() method that returns true.
Types ¶
type ErrNotRetriable ¶
type ErrNotRetriable struct {
// contains filtered or unexported fields
}
ErrNotRetriable is a wrapper for an error that a migrator may use to indicate the specific error cannot be retried.
func (ErrNotRetriable) Temporary ¶
func (ErrNotRetriable) Temporary() bool
type ErrRetriable ¶
type ErrRetriable struct {
// contains filtered or unexported fields
}
ErrRetriable is a wrapper for an error that a migrator may use to indicate the specific error can be retried.
func (ErrRetriable) Temporary ¶
func (ErrRetriable) Temporary() bool
type MigrateActionFunc ¶
MigrateActionFunc is expected to persist the altered info.Object. The Reporter returned from Visit is passed to this function and may be used to carry additional information about what to save on an object.
type MigrateFilterFunc ¶
MigrateFilterFunc can return false to skip an item, or an error.
type MigrateVisitFunc ¶
MigrateVisitFunc is invoked for each returned object, and may return a Reporter that can contain info to be used by save.
type Reporter ¶
type Reporter interface { // Changed returns true if the resource requires migration. Changed() bool }
Reporter indicates whether a resource requires migration.
type ResourceOptions ¶
type ResourceOptions struct { In io.Reader Out, ErrOut io.Writer AllNamespaces bool Include []string Filenames []string Confirm bool Output string FromKey string ToKey string OverlappingResources []sets.String DefaultExcludes []unversioned.GroupResource Builder *resource.Builder SaveFn MigrateActionFunc PrintFn MigrateActionFunc FilterFn MigrateFilterFunc DryRun bool Summarize bool }
ResourceOptions assists in performing migrations on any object that can be retrieved via the API.
func (*ResourceOptions) Bind ¶
func (o *ResourceOptions) Bind(c *cobra.Command)
func (*ResourceOptions) Validate ¶
func (o *ResourceOptions) Validate() error
func (*ResourceOptions) Visitor ¶
func (o *ResourceOptions) Visitor() *ResourceVisitor
type ResourceVisitor ¶
type ResourceVisitor struct { Out io.Writer Builder *resource.Builder SaveFn MigrateActionFunc PrintFn MigrateActionFunc FilterFn MigrateFilterFunc DryRun bool }
func (*ResourceVisitor) Visit ¶
func (o *ResourceVisitor) Visit(fn MigrateVisitFunc) error