kind
This module has been generated via dagger init and serves as a reference tobasic module structure as you get started with Dagger.
Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.
The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.
Installation
dagger install github.com/riftonix/daggerverse/modules/kind@875bc512cdced2a013cfbbe891ea858f710129caEntrypoint
Return Type
Kind !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| imageRegistry | String | "docker.io" | Helm image registry |
| imageRepository | String | "docker" | Helm image repositroy |
| imageTag | String | "28.5.0-rc.1-dind" | Helm image tag |
| userId | String | "65532" | Helm image user_id |
Example
dagger -m github.com/riftonix/daggerverse/modules/kind@875bc512cdced2a013cfbbe891ea858f710129ca call \
func (m *MyModule) Example() *dagger.Kind {
return dag.
Kind()
}@function
def example() -> dagger.Kind:
return (
dag.kind()
)@func()
example(): Kind {
return dag
.kind()
}Types
Kind 🔗
Dagger-ci helm module
container() 🔗
Creates container with configured kind k8s cluster
Return Type
Container ! Example
dagger -m github.com/riftonix/daggerverse/modules/kind@875bc512cdced2a013cfbbe891ea858f710129ca call \
containerfunc (m *MyModule) Example() *dagger.Container {
return dag.
Kind().
Container()
}@function
def example() -> dagger.Container:
return (
dag.kind()
.container()
)@func()
example(): Container {
return dag
.kind()
.container()
}