kustomize
Kubernetes native configuration management.
Installation
dagger install github.com/sagikazarmark/daggerverse/kustomize@v0.1.0
Entrypoint
Return Type
Kustomize !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
version | String | - | Version (image tag) to use from the official image repository as a base container. |
image | String | - | Custom image reference in "repository:tag" format to use as a base container. |
container | Container | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | No description provided |
dir | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
key | String ! | - | No description provided |
value | String ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
image | String ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
namespace | String ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
nameSuffix | String ! | - | No description provided |
Example
func (m *myModule) example(source *Directory, nameSuffix string) *KustomizeEdit {
return dag.
Kustomize().
Edit(source).
Set().
Namesuffix(nameSuffix)
}