package config // DestroyOptions is the options for the build command type DestroyOptions struct { // Concurrency is the maximum number of concurrent helm processes to run, 0 is unlimited Concurrency int // SkipCharts makes Destroy skip `withPreparedCharts` SkipCharts bool // Cascade '--cascade' to helmv3 delete, available values: background, foreground, or orphan, default: background Cascade string } // NewDestroyOptions creates a new Apply func NewDestroyOptions() *DestroyOptions { return &DestroyOptions{} } // DestroyImpl is impl for applyOptions type DestroyImpl struct { *GlobalImpl *DestroyOptions } // NewDestroyImpl creates a new DestroyImpl func NewDestroyImpl(g *GlobalImpl, b *DestroyOptions) *DestroyImpl { return &DestroyImpl{ GlobalImpl: g, DestroyOptions: b, } } // Concurrency returns the concurrency func (c *DestroyImpl) Concurrency() int { return c.DestroyOptions.Concurrency } // SkipCharts returns skipCharts flag func (c *DestroyImpl) SkipCharts() bool { return c.DestroyOptions.SkipCharts } // Cascade returns cascade flag func (c *DestroyImpl) Cascade() string { return c.DestroyOptions.Cascade }