kind
A Dagger Module for integrating with the KinD
Installation
dagger install github.com/KimNorgaard/daggerverse/kind@287b9e1f5a11fe59bee62182ab57c104c8c4aa38
Entrypoint
Return Type
Kind !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
socket | Socket ! | - | Unix socket to connect to the external Docker Engine. Please carefully use this option it can expose your host to the container. |
containerImage | String | - | No description provided |
kindImage | String | - | No description provided |
Example
func (m *myModule) example(socket *Socket) *Kind {
return dag.
Kind(socket)
}
Types
Kind π
container() π
Container that contains the kind and k9s binaries
Return Type
Container !
Example
func (m *myModule) example(socket *Socket) *Container {
return dag.
Kind(socket).
Container()
}
cluster() π
Returns a cluster object that can be used to interact with the kind cluster
Return Type
Cluster !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
name | String | "kind" | Name of the cluster |
Example
func (m *myModule) example(socket *Socket) *KindCluster {
return dag.
Kind(socket).
Cluster()
}
Cluster π
Represents a kind cluster
name() π
Name of the cluster
Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Kind().
Cluster().
Name(ctx)
}
network() π
Network name of the cluster. This should be the same as the network name of the dagger-engine containers
Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Kind().
Cluster().
Network(ctx)
}
kindImage() π
KindImage to use for the cluster If not provided, the default image is used
Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Kind().
Cluster().
KindImage(ctx)
}
exist() π
Check if the cluster exists or not
Return Type
Boolean !
Example
func (m *myModule) example(ctx context.Context) bool {
return dag.
Kind().
Cluster().
Exist(ctx)
}
create() π
Create creates the cluster if it doesnβt already exist.
Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Kind().
Cluster().
Create(ctx)
}
delete() π
Delete deletes the cluster if it exists.
Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Kind().
Cluster().
Delete(ctx)
}
logs() π
Exports cluster logs to a directory
Return Type
Directory !
Example
func (m *myModule) example() *Directory {
return dag.
Kind().
Cluster().
Logs()
}
kubeconfig() π
Exports cluster kubeconfig
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
internal | Boolean | false | If true, the internal address is used in the kubeconfig. This is useful for running kubectl commands from within other containers. |
Example
func (m *myModule) example() *File {
return dag.
Kind().
Cluster().
Kubeconfig()
}
container() π
Container that contains the kind and k9s binaries with the cluster name and network set as environment variables
Return Type
Container !
Example
func (m *myModule) example() *Container {
return dag.
Kind().
Cluster().
Container()
}