helm
No long description provided.
Installation
dagger install github.com/aweris/daggerverse/helm@196f6b6748fe1d283de2c6022382db710e2d2c49Entrypoint
Return Type
Helm Example
dagger -m github.com/aweris/daggerverse/helm@196f6b6748fe1d283de2c6022382db710e2d2c49 call \
func (m *MyModule) Example() *dagger.Helm {
return dag.
Helm()
}@function
def example() -> dagger.Helm:
return (
dag.helm()
)@func()
example(): Helm {
return dag
.helm()
}Types
Helm 🔗
cli() 🔗
Cli returns a Helm CLI with the given config.
Return Type
Cli !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| config | File ! | - | No description provided |
Example
dagger -m github.com/aweris/daggerverse/helm@196f6b6748fe1d283de2c6022382db710e2d2c49 call \
clifunc (m *MyModule) Example(config ) {
return dag.
Helm().
Cli(config)
}@function
def example(config: ) -> :
return (
dag.helm()
.cli(config)
)@func()
example(config: ): {
return dag
.helm()
.cli(config)
}Cli 🔗
config() 🔗
Return Type
File ! Example
Function HelmCli.Config is not accessible from the helm moduleFunction HelmCli.Config is not accessible from the helm moduleFunction HelmCli.Config is not accessible from the helm moduleFunction HelmCli.Config is not accessible from the helm moduleexec() 🔗
Exec executes the given Helm command and returns the stdout.
Return Type
StringKind !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| args | [StringKind ! ] ! | - | No description provided |
Example
Function HelmCli.exec is not accessible from the helm moduleFunction HelmCli.exec is not accessible from the helm moduleFunction HelmCli.exec is not accessible from the helm moduleFunction HelmCli.exec is not accessible from the helm modulecontainer() 🔗
Container returns a container with the Helm image and given config. The entrypoint is set to Helm.
Return Type
Container ! Example
Function HelmCli.container is not accessible from the helm moduleFunction HelmCli.container is not accessible from the helm moduleFunction HelmCli.container is not accessible from the helm moduleFunction HelmCli.container is not accessible from the helm module