Dagger
Search

helm

No long description provided.

Installation

dagger install github.com/aweris/daggerverse/helm@a77e1a3398109f46a6d7d01cee33e59dd653a774

Entrypoint

Return Type
Helm
Example
func (m *myModule) example() *Helm  {
	return dag.
			Helm()
}
@function
def example() -> dag.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
NameTypeDefault ValueDescription
configFile !-No description provided
Example
Function Helm.cli is not accessible from the helm module
func (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 module
Function HelmCli.Config is not accessible from the helm module
Function HelmCli.Config is not accessible from the helm module
Function HelmCli.Config is not accessible from the helm module

exec() 🔗

Exec executes the given Helm command and returns the stdout.

Return Type
StringKind !
Arguments
NameTypeDefault ValueDescription
args[StringKind ! ] !-No description provided
Example
Function HelmCli.exec is not accessible from the helm module
Function HelmCli.exec is not accessible from the helm module
Function HelmCli.exec is not accessible from the helm module
Function HelmCli.exec is not accessible from the helm module

container() 🔗

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 module
Function HelmCli.container is not accessible from the helm module
Function HelmCli.container is not accessible from the helm module
Function HelmCli.container is not accessible from the helm module