helm
No long description provided.
Installation
dagger install github.com/shykes/dagger/helm@9a560c27eafd9d5ff8c0598f41b467f1fd20ac5d
Entrypoint
Return Type
Helm !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
chart | Directory | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
version | String ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
target | String ! | - | The git ref to publish eg. "helm/dagger/v0.13.0" |
githubToken | Secret | - | No description provided |
dryRun | Boolean | - | 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)
}