Dagger
Search

thunder

This module provides integration with Thunder Compute for running workloads on GPU-enabled Kubernetes nodes.

Installation

dagger install github.com/jackowfish/thunder-dagger-module@d4e9e9ee7555a255d7eb9fdc9055afeb3aa1d220

Entrypoint

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

Types

Thunder 🔗

Thunder provides integration with Thunder Compute for GPU workloads

deploy() 🔗

Deploy a new Thunder compute instance with a Dagger runner

Returns the command to set the DAGGER_RUNNER_HOST environment variable

Return Type
String !
Arguments
NameTypeDefault ValueDescription
tokenString !-Thunder API token
Example
func (m *myModule) example(ctx context.Context, token string) string  {
	return dag.
			Thunder().
			Deploy(ctx, token)
}

destroy() 🔗

Destroy a Thunder compute instance

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
tokenString !-Thunder API token
instanceIdString !-Instance ID to destroy
Example
func (m *myModule) example(ctx context.Context, token string, instanceId string)   {
	return dag.
			Thunder().
			Destroy(ctx, token, instanceId)
}