Dagger
Search

hydrate-helm-images

No long description provided.

Installation

dagger install github.com/prefapp/daggerverse/hydrate-helm-images@92f2b7b0e5f0d4f28cbf5cdfa8398082870f7c46

Entrypoint

Return Type
HydrateHelmImages
Example
dagger -m github.com/prefapp/daggerverse/hydrate-helm-images@92f2b7b0e5f0d4f28cbf5cdfa8398082870f7c46 call \
func (m *myModule) example() *HydrateHelmImages  {
	return dag.
			HydrateHelmImages()
}
@function
def example() -> dag.HydrateHelmImages:
	return (
		dag.hydrate_helm_images()
	)
@func()
example(): HydrateHelmImages {
	return dag
		.hydrateHelmImages()
}

Types

HydrateHelmImages 🔗

buildPreviousImages() 🔗

[“apps/cluster-name/test-tenant/sample-app/dev”]

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
updatedDeploymentsString !-No description provided
repoDirDirectory !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/hydrate-helm-images@92f2b7b0e5f0d4f28cbf5cdfa8398082870f7c46 call \
 build-previous-images --updated-deployments string --repo-dir DIR_PATH
func (m *myModule) example(updatedDeployments string, repoDir *Directory) *Directory  {
	return dag.
			HydrateHelmImages().
			BuildPreviousImages(updatedDeployments, repoDir)
}
@function
def example(updated_deployments: str, repo_dir: dagger.Directory) -> dagger.Directory:
	return (
		dag.hydrate_helm_images()
		.build_previous_images(updated_deployments, repo_dir)
	)
@func()
example(updatedDeployments: string, repoDir: Directory): Directory {
	return dag
		.hydrateHelmImages()
		.buildPreviousImages(updatedDeployments, repoDir)
}

buildPreviousImagesForApp() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
manifestsDirDirectory !-No description provided
outputDirDirectory !-No description provided
appString !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/hydrate-helm-images@92f2b7b0e5f0d4f28cbf5cdfa8398082870f7c46 call \
 build-previous-images-for-app --manifests-dir DIR_PATH --output-dir DIR_PATH --app string
func (m *myModule) example(ctx context.Context, manifestsDir *Directory, outputDir *Directory, app string) string  {
	return dag.
			HydrateHelmImages().
			BuildPreviousImagesForApp(ctx, manifestsDir, outputDir, app)
}
@function
async def example(manifests_dir: dagger.Directory, output_dir: dagger.Directory, app: str) -> str:
	return await (
		dag.hydrate_helm_images()
		.build_previous_images_for_app(manifests_dir, output_dir, app)
	)
@func()
async example(manifestsDir: Directory, outputDir: Directory, app: string): Promise<string> {
	return dag
		.hydrateHelmImages()
		.buildPreviousImagesForApp(manifestsDir, outputDir, app)
}

buildCurrentImages() 🔗

Return Type
File !
Arguments
NameTypeDefault ValueDescription
matrixString !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/hydrate-helm-images@92f2b7b0e5f0d4f28cbf5cdfa8398082870f7c46 call \
 build-current-images --matrix string
func (m *myModule) example(matrix string) *File  {
	return dag.
			HydrateHelmImages().
			BuildCurrentImages(matrix)
}
@function
def example(matrix: str) -> dagger.File:
	return (
		dag.hydrate_helm_images()
		.build_current_images(matrix)
	)
@func()
example(matrix: string): File {
	return dag
		.hydrateHelmImages()
		.buildCurrentImages(matrix)
}