Dagger
Search

kustomize

Kubernetes native configuration management.

Installation

dagger install github.com/sagikazarmark/daggerverse/kustomize@v0.1.0

Entrypoint

Return Type
Kustomize !
Arguments
NameTypeDefault ValueDescription
versionString -Version (image tag) to use from the official image repository as a base container.
imageString -Custom image reference in "repository:tag" format to use as a base container.
containerContainer -Custom container to use as a base container.
Example
func (m *myModule) example() *Kustomize  {
	return dag.
			Kustomize()
}

Types

Kustomize 🔗

container() 🔗

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Kustomize().
			Container()
}

build() 🔗

Build a kustomization target from a directory or URL.

Return Type
File !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
dirString -Subdirectory within the source to use as the target.
Example
func (m *myModule) example(source *Directory) *File  {
	return dag.
			Kustomize().
			Build(source)
}

edit() 🔗

Edit a kustomization file.

Return Type
Edit !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
Example
func (m *myModule) example(source *Directory) *KustomizeEdit  {
	return dag.
			Kustomize().
			Edit(source)
}

Edit 🔗

Edit a kustomization file.

directory() 🔗

Return Type
Directory !
Example
func (m *myModule) example(source *Directory) *Directory  {
	return dag.
			Kustomize().
			Edit(source).
			Directory()
}

file() 🔗

Return Type
File !
Example
func (m *myModule) example(source *Directory) *File  {
	return dag.
			Kustomize().
			Edit(source).
			File()
}

set() 🔗

Set the value of different fields in kustomization file.

Return Type
Set !
Example
func (m *myModule) example(source *Directory) *KustomizeSet  {
	return dag.
			Kustomize().
			Edit(source).
			Set()
}

Set 🔗

Set the value of different fields in kustomization file.

annotation() 🔗

Sets one or more commonAnnotations in kustomization.yaml.

Return Type
Edit !
Arguments
NameTypeDefault ValueDescription
keyString !-No description provided
valueString !-No description provided
Example
func (m *myModule) example(source *Directory, key string, value string) *KustomizeEdit  {
	return dag.
			Kustomize().
			Edit(source).
			Set().
			Annotation(key, value)
}

image() 🔗

Set images and their new names, new tags or digests in the kustomization file.

Return Type
Edit !
Arguments
NameTypeDefault ValueDescription
imageString !-No description provided
Example
func (m *myModule) example(source *Directory, image string) *KustomizeEdit  {
	return dag.
			Kustomize().
			Edit(source).
			Set().
			Image(image)
}

namespace() 🔗

Set the value of the namespace field in the kustomization file.

Return Type
Edit !
Arguments
NameTypeDefault ValueDescription
namespaceString !-No description provided
Example
func (m *myModule) example(source *Directory, namespace string) *KustomizeEdit  {
	return dag.
			Kustomize().
			Edit(source).
			Set().
			Namespace(namespace)
}

namesuffix() 🔗

Set the value of the nameSuffix field in the kustomization file.

Return Type
Edit !
Arguments
NameTypeDefault ValueDescription
nameSuffixString !-No description provided
Example
func (m *myModule) example(source *Directory, nameSuffix string) *KustomizeEdit  {
	return dag.
			Kustomize().
			Edit(source).
			Set().
			Namesuffix(nameSuffix)
}