helm
No long description provided.
Installation
dagger install github.com/aweris/daggerverse/helm@a77e1a3398109f46a6d7d01cee33e59dd653a774Entrypoint
Return Type
Helm Example
dagger -m github.com/aweris/daggerverse/helm@a77e1a3398109f46a6d7d01cee33e59dd653a774 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@a77e1a3398109f46a6d7d01cee33e59dd653a774 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