Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CopyValues ¶
CopyValues creates a shallow copy of the given Values.
func ImageMapToValues ¶
func ImageMapToValues(m map[string]*imagevector.Image) map[string]interface{}
ImageMapToValues transforms the given image name to image mapping into chart Values.
func InjectImages ¶
func InjectImages(values map[string]interface{}, v imagevector.ImageVector, names []string, opts ...imagevector.FindOptionFunc) (map[string]interface{}, error)
InjectImages finds the images with the given names and opts, makes a shallow copy of the given Values and injects a name to image string mapping at the `images` key of that map and returns it.
Types ¶
type Chart ¶
Chart represents a Helm chart (and its sub-charts) that can be applied and deleted.
func (*Chart) Apply ¶
func (c *Chart) Apply( ctx context.Context, chartApplier gardenerkubernetes.ChartApplier, namespace string, imageVector imagevector.ImageVector, runtimeVersion, targetVersion string, additionalValues map[string]interface{}, ) error
Apply applies this chart in the given namespace using the given ChartApplier. Before applying the chart, it collects its values, injecting images and merging the given values as needed.
func (*Chart) Delete ¶
Delete deletes this chart's objects from the given namespace using the given client.
func (*Chart) Render ¶
func (c *Chart) Render( chartRenderer chartrenderer.Interface, namespace string, imageVector imagevector.ImageVector, runtimeVersion, targetVersion string, additionalValues map[string]interface{}, ) (string, []byte, error)
Render renders this chart in the given namespace using the given chartRenderer. Before rendering the chart, it collects its values, injecting images and merging the given values as needed.