Dagger
Search

helm

No long description provided.

Installation

dagger install github.com/shykes/dagger/helm@f92c32feb29f49cef11d3de8634d6ecb585edc4c

Entrypoint

Return Type
Helm !
Arguments
NameTypeDefault ValueDescription
chartDirectory -The dagger helm chart directory
Example
func (m *myModule) example() *Helm  {
	return dag.
			Helm()
}

Types

Helm 🔗

lint() 🔗

Lint the helm chart

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Helm().
			Lint(ctx)
}

test() 🔗

Test the helm chart on an ephemeral K3S service

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Helm().
			Test(ctx)
}

setVersion() 🔗

Set chart & app version

Return Type
File !
Arguments
NameTypeDefault ValueDescription
versionString !-Version to set the chart to, e.g. --version=v0.12.0
Example
func (m *myModule) example(version string) *File  {
	return dag.
			Helm().
			SetVersion(version)
}

publish() 🔗

Package & publish chart to our registry + github release

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
targetString !-The git ref to publish eg. "helm/dagger/v0.13.0"
githubTokenSecret -No description provided
dryRunBoolean -Test as much as possible without actually publishing anything
Example
func (m *myModule) example(ctx context.Context, target string)   {
	return dag.
			Helm().
			Publish(ctx, target)
}