Documentation ¶
Index ¶
- Constants
- func New(index int, props map[string]any) environment.ConnectedChart
- func NewVersioned(index int, helmVersion string, props map[string]any, ...) environment.ConnectedChart
- func NewWithOverride(index int, props map[string]any, overrideSource interface{}, ...) environment.ConnectedChart
- type Chart
- type OverrideFn
- type Props
Constants ¶
View Source
const ( AppName = "plugin" NodesLocalURLsKey = "plugin_local" NodesInternalURLsKey = "plugin_internal" DBsLocalURLsKey = "plugin_db" )
Variables ¶
This section is empty.
Functions ¶
func New ¶
func New(index int, props map[string]any) environment.ConnectedChart
func NewVersioned ¶
func NewVersioned(index int, helmVersion string, props map[string]any, overrideSource interface{}, overrideFn OverrideFn) environment.ConnectedChart
NewVersioned enables you to select a specific helm chart version
func NewWithOverride ¶
func NewWithOverride(index int, props map[string]any, overrideSource interface{}, overrideFn OverrideFn) environment.ConnectedChart
NewWithOverride enables you to pass in a function that will override the default properties
Types ¶
type Chart ¶
type Chart struct { Name string Index int Path string Version string Props *Props Values *map[string]any }
func (Chart) ExportData ¶
func (m Chart) ExportData(e *environment.Environment) error
func (Chart) GetVersion ¶
func (Chart) IsDeploymentNeeded ¶
type OverrideFn ¶
type OverrideFn = func(source interface{}, target interface{})
Click to show internal directories.
Click to hide internal directories.